GET /reports/learningpaths/
Description
Generates learningpath report for learningpath
-id
.
Endpoints
GET /reports/learningpaths/{learningpath-id}/
GET /reports/learningpaths/{learningpath-id}/page{#}/
GET /reports/learningpaths/{learningpath-id}/count/
Parameters
user_filter
: (user-search-phrase) as described here
status
: (string)
type
: (string)
min_start_date
: (date8)
max_start_date
: (date8)
min_completion_date
: (date8)
max_completion_date
: (date8)
Notes
- No parameters are required - all paramters are optional
- If no parameters are sent, all results in
learningpath-id
will be returned - These endpoints return paginated results, therefore having
/page{#}/
and/count/
endpoint variants to read and control the results delivered status
valid values arecomplete
andincomplete
type
valid values areactive
andarchived
Returns learningpath_id, learningpath_name, user_id, username, status, type, start_date, completion_date
for specified learningpath-id
.
[
{
"learningpath_id": "1",
"learningpath_name": "First LP",
"user_id": "5",
"username": "bfroliad5302",
"status": "complete",
"type": "active",
"start_date": "20230125",
"completion_date": "20230125"
},
{
"learningpath_id": "1",
"learningpath_name": "First LP",
"user_id": "25",
"username": "ahhkw1588353769",
"status": "incomplete",
"type": "active",
"start_date": "20230128",
"completion_date": ""
}
]