Course Progress
This API allows you get a given course's progress
GET
{{BASE_URL}}/api/courses/{course_id}/progress
Path Parameters
Name
Type
Description
course_id
integer
ID of the course to like
Headers
{
"status": 200,
"response_code": 0,
"success": true,
"errors": [],
"message": "Progress retrieved",
"data": {
"completed": 0,
"total": 2,
"percentage": 0.0,
"message": "Completed 0/2 lessons",
"lessons": [
{
"lesson_id": 53,
"title": "Receive funds",
"status": "not_started",
"quiz_status": "not_started"
},
{
"lesson_id": 54,
"title": "Fund receipt concerns",
"status": "not_started",
"quiz_status": "not_started"
}
],
"course_status": "not_started"
}
}
Last updated
Was this helpful?