GET /learningpaths/{learningpath-id}/users/
Description
Lists information about active enrolled users (or a specific enrolled user) in a learningpath.
Endpoints
GET /learningpaths/{learningpath-id}/users/
GET /learningpaths/{learningpath-id}/users/{user-id}/
Returns user_id, username, status, start_time, completion_time, completion_method, path_version, current_branch, current_step, user_progress
for each active user (or for user-id
) in learningpath-id
[
{
"user_id": "1",
"username": "admin",
"status": "Main Branch | Step 1",
"start_time": "20230921 13:30:09",
"completion_time": "",
"completion_method": "",
"path_version": "3",
"current_branch": "Main Branch",
"current_step": "Welcome to the Learning Path",
"user_progress": "0"
},
{
"user_id": "25",
"username": "ahhkw1588353769",
"status": "Main Branch | Step 2",
"start_time": "20230223 14:14:15",
"completion_time": "",
"completion_method": "",
"path_version": "3",
"current_branch": "Main Branch",
"current_step": "Checklist",
"user_progress": "16"
}
]