Skip to main content
POST
/
course_lessons
/
{lesson_id}
/
start
JavaScript
import Whop from '@whop/sdk';

const client = new Whop({
  apiKey: 'My API Key',
});

const response = await client.courseLessons.start('lesson_id');

console.log(response);
true

Authorizations

Authorization
string
header
required

The app API key from an app from the /dashboard/developer page

Path Parameters

lesson_id
string
required

The ID of the lesson being started

Response

A successful response

Represents true or false values.