---
title: "List Lesson Completions"
method: GET
path: "/courses/{course_id}/lesson_completions"
tags: ["Courses::LessonCompletion"]
---

# List Lesson Completions

`GET /courses/{course_id}/lesson_completions`

List of enrollment-completion records showing which lessons have been completed by which enrollments. You can filter on one or more `enrollment_id` or `lesson_id` records (see filter params).

## Path parameters

- `course_id` integer, required

## Query parameters

- `after` string
- `sort_order` 'asc' | 'desc'
- `sort_property` 'id' | 'updated_at'
- `filter` object
  - `enrollment_id` string — A comma-separated list of enrollement IDs to filter by.
  - `lesson_id` string — A comma-separated list of lesson IDs to filter by.

## Response `200`

OK

- CoursesLessonCompletionAttributes[]
  - `id` integer — ID
  - `public_id` string, nullable — Public ID
  - `enrollment_id` integer — The ID of the `Courses::Enrollment` record that completed the lesson
  - `lesson_id` integer — The ID of the `Courses::Lesson` record that was completed
  - `completed_at` string, date-time — The time when the record was completed; It is set automatically to the current time when the record is created

## Other responses

- `401` — Unauthorized
- `404` — Not Found

---

[API](https://skmtc.net/myclickfunnels/apis/clickfunnels-api.md) · [All operations](https://skmtc.net/myclickfunnels/apis/clickfunnels-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myclickfunnels/clickfunnels-api/revisions/ae6313eaa176/schema)
