Skip to main content
https://.thoughtindustries.com

Show Lesson

Returns a single lesson by its unique identifier

Returns a single lesson by its unique identifier.

GEThttps://example.thoughtindustries.com/incoming/v2/lessons/:id

Example request

curl "https://example.thoughtindustries.com/incoming/v2/lessons/:id" \
  -H 'Authorization: Bearer YOUR_API_KEY'

Parameters

NameTypeRequiredLocationDescription
iduuidYespathThe unique identifier of the lesson to retrieve.

Example response

{
  "id": "00000000-0000-0000-0000-000000000000",
  "title": "string",
  "slug": "example-slug",
  "accessLevel": "studentsOnly",
  "sectionId": "00000000-0000-0000-0000-000000000000",
  "sectionTitle": "string",
  "topicCount": 0
}

Response fields

FieldTypeDescription
iduuidUnique identifier of the lesson.
titlestringDisplay title of the lesson.
slugstringURL-friendly identifier for the lesson.
accessLevelAccessLevelDefines who can access the lesson (e.g., studentsOnly).
sectionIduuidUnique identifier of the section that contains this lesson.
sectionTitlestringDisplay title of the parent section.
topicCountintegerTotal number of topics within the lesson.