Learner - View Course Certificate API

List the certifications of the user for a given course id.

Interfaces

View Course Certificate

GET /api/learner/courses/:course_id/certificate(/:learner_id)

This endpoint lists the certifications of the user for a given course id.

Response codes

  • 200 OK
  • 401 Unauthorized

Example Response

{
  "certificates": [
    {
      "issuer": "Bridge",
      "learnable_title": "Crs_02",
      "earned_at": "2015-08-25T10:21:39.041-06:00",
      "recipient": "Bruce Lee",
      "score": 100,
      "course": "Crs_02"
    }
  ]
}