v1

latestOpenAPI 3.1.0MIT2026-07-243952451019.0 KB
Course

List Courses

List courses for a team

get/workspaces/{workspace_id}/courses

Path parameters

workspace_idinteger required

Query parameters

afterstring

ID of item after which the collection should be returned. More examples and info about pagination in our guides.

sort_order'asc' | 'desc'

Sort order of a list response. Use 'desc' to reverse the default 'asc' (ascending) sort order. Examples in our guides.

sort_property'id' | 'updated_at'

Sort property of a list response. The default is id and thus the created_at order. If you sort by other properties, we additionally sort by id implicitly as a secondary sort property, so that you can rely on the sort order to be deterministic even if the main sort property ends up with the same values.

Response

OK

idinteger

Course ID

public_idstring nullable

Course public ID

titlestring

Title

published_atstring date-time nullable

Available at

root_section_idstring nullable

Root section

descriptionstring

Description

current_pathstring nullable

Course Path URL

sharing_fingerprintstring nullable

Sharing Fingerprint

show_in_communityboolean nullable

Show In Customer Center?

show_to_non_membersboolean nullable

Show To Non Members

upgrade_urlstring nullable

Upgrade URL

redirect_to_full_courseboolean nullable

Redirect To Full Course

unauthorized_redirect_urlstring nullable

Unauthorized Redirect

comments_enabledboolean nullable

Enable Lesson Comments?

created_atstring date-time nullable

Created at

updated_atstring date-time nullable

Updated at

image_urlstring nullable

The URL of the image that is shown on the storefront of the main course page

Example response

[
  {
    "id": 1,
    "public_id": "iawbIp",
    "title": "Example Course",
    "published_at": "2025-01-01T00:00:00.000Z",
    "root_section_id": null,
    "description": "A practical and engaging course designed to build core skills in Marketing.",
    "current_path": null,
    "sharing_fingerprint": null,
    "show_in_community": false,
    "show_to_non_members": false,
    "upgrade_url": null,
    "redirect_to_full_course": true,
    "unauthorized_redirect_url": null,
    "comments_enabled": false,
    "created_at": "2025-01-01T00:00:00.000Z",
    "updated_at": "2025-01-01T00:00:00.000Z",
    "image_url": "https://example.myclickfunnels.com/uploads/image/1/file/9c8d1e7d480dc9882c519d4b4528826f.png"
  }
]