Skip to content

CourseLessonInteraction

Bakhtarian edited this page May 14, 2026 · 1 revision

Course Lesson Interaction

A course lesson interaction is a record of a student's engagement with a specific lesson — for example whether they have started or completed it, and any assessment results. This resource is read-only.

SDK access

$client->courseLessonInteractions // Matchable\Whop\Resource\CourseLessonInteractionResource

Endpoints

list(array $query = []): array

HTTP GET course-lesson-interactions
Does Lists course lesson interactions.
Parameters $query — optional filters / pagination (e.g. by lesson, course, or student).
Returns array

get(string $id): array

HTTP GET course-lesson-interactions/{id}
Does Retrieves a single course lesson interaction by ID.
Parameters $id — the course lesson interaction ID.
Returns array

Note: this resource is read-only — interactions are produced by lesson lifecycle actions (see CourseLesson) and cannot be created, updated, or deleted directly.

Example

$interactions = $client->courseLessonInteractions->list(['course_id' => 'course_...']);

Reference

Official Whop documentation: https://docs.whop.com

Clone this wiki locally