GET /v1/learningPaths/{learningPathId}/steps

List Learning path steps

Path parameters

  • learningPathId string Required

    The id of the learning path

Query parameters

  • page integer | null

    The page number in a paginated set of results

  • limit integer | null

    The limit of results to be returned per page

  • contentTitle[eq] string

    Search learning path steps with a specific title

  • contentTitle[contains] string

    Search learning path steps whose title contains this string

  • contentType[in] array[string]

    Search learning path steps with these types of content

    Values are Course, Link, Live, or Page.

  • contentType[eq] string

    Search learning path steps with a specific content type

    Values are Course, Link, Live, or Page.

Responses

  • 200 application/json

    Learning Path steps returned successfully

    Hide response attributes Show response attributes object
    • items array[object] Required

      The items found

      Hide items attributes Show items attributes object
      • id string Required

        The id of the learning path step.

      • title string Required

        The title of the learning path step.

      • contentType string Required

        The type of the learning path step.

        Values are Course, Link, Live, or Page.

      • createdAt integer Required

        Timestamp in ms of creation date

    • total integer Required

      The total number of items found

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

GET /v1/learningPaths/{learningPathId}/steps
curl \
 --request GET 'https://openapi.meltingspot.io/v1/learningPaths/{learningPathId}/steps'
Response examples (200)
{
  "items": [
    {
      "id": "string",
      "title": "string",
      "contentType": "Course",
      "createdAt": 42
    }
  ],
  "total": 42
}