GET /v1/learningPaths/{learningPathId}/participants/{learningPathParticipantId}/stepCompletions

List Learning path step completions

Path parameters

  • learningPathId string Required

    The id of the learning path

  • learningPathParticipantId string Required

    The id of the learning path participant

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

  • completedAt[lt] integer

    Return elements with date before than this

  • completedAt[lte] integer

    Return elements with date before than or equal to this

  • completedAt[gt] integer

    Return elements with date after than this

  • completedAt[gte] integer

    Return elements with date after than or equal to this

  • completedAt[eq] integer

    Return elements with date equal to this

  • contentType[in] array[string]

    Search learning path content completions with these types of content

    Values are Course, Link, Live, or Page.

  • contentType[eq] string

    Search learning path content completions with a specific content type

    Values are Course, Link, Live, or Page.

Responses

  • 200 application/json

    Learning path step completions 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 content completion.

      • stepContentId string Required

        The id of the learning path content.

      • learningPathParticipantId string Required

        The id of the learning path participant.

      • contentType string Required

        The type of the learning path content.

        Values are Course, Link, Live, or Page.

      • completedAt integer Required

        Timestamp in ms of completion date

    • total integer Required

      The total number of items found

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

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