GET /reports/users/{user-id}/learningpaths/
Description
Generates user learningpath report for user-id
.
Endpoints
GET /reports/users/{user-id}/learningpaths/
GET /reports/users/{user-id}/learningpaths/page{#}/
GET /reports/users/{user-id}/learningpaths/count/
Notes
- These endpoints return paginated results, therefore having
/page{#}/
and/count/
endpoint variants to read and control the results delivered
Returns learningpath_id, learningpath_name, user_id, username, status, type, start_date, completion_date
for specified user-id
.
[
{
"learningpath_id": "9",
"learningpath_name": "New Hire",
"user_id": "1",
"username": "ad73665",
"status": "incomplete",
"type": "active",
"start_date": "20230921",
"completion_date": ""
},
{
"learningpath_id": "1",
"learningpath_name": "Supervisors",
"user_id": "1",
"username": "ad73665",
"status": "complete",
"type": "active",
"start_date": "20230914",
"completion_date": "20230920"
}
]