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

Get learning path step completion

Path parameters

  • learningPathId string Required

    The id of the learning path

  • learningPathParticipantId string Required

    The id of the learning path participant

  • stepCompletionId string Required

    The id of the learning path step completion

Responses

  • 200 application/json

    Learning path step completion returned successfully

    Hide response attributes Show response 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

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Learning path step completion not found

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