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

LearningPaths

Returns a single learning path by its unique identifier

Returns a single learning path by its unique identifier.

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

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

Example request

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

Parameters

NameTypeRequiredLocationDescription
iduuidYespathUnique identifier of the learning path to retrieve.

Example response

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

Response fields

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