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

Courses

Returns a single course by its unique identifier

Returns a single course by its unique identifier.

GEThttps://example.thoughtindustries.com/incoming/v2/content/courses/:id

:::note If id ends in .xlf (e.g. GET /v2/content/courses/:id.xlf), this endpoint instead returns the course's XLIFF translation export as application/xml rather than the JSON body below. :::

Example request

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

Parameters

NameTypeRequiredLocationDescription
iduuidYespathUnique identifier of the course to retrieve.

Example response

{
  "id": "00000000-0000-0000-0000-000000000000",
  "title": "string",
  "slug": "example-slug",
  "body": "string"
}

Response fields

FieldTypeDescription
iduuidUnique identifier of the course.
titlestringTitle of the course.
slugstringURL-friendly identifier for the course.
bodystringFull HTML body content of the course.