Migrate getUserCourseStats
This guide covers transitioning from the v1 getUserCourseStats endpoint to the more efficient v2 consolidated endpoint.
Key changes
- Consolidation: The
getCoursesStats,getUserCourseStats,getUserCourses, andgetCourseStatsv1 endpoints are now merged into the single, more efficient List all courses statistics v2 endpoint.- Pagination: The v2 endpoint is paginated and returns 500 courses statistics per page.
Documentation links
Here are the links to the API reference for:
Endpoint mapping
Here's the direct correlation between the v1 and v2 endpoint URLs:
- API v1:
/api/v1/courses/:course_id/stats/:user_email - API v2:
/api/v1/courses/stats
Behavior changes
Thanks to API v2 pagination mechanism, there is no more limitation on the number of statistics to be fetched through this endpoint.
How to identify users in v2
A key update in v2 is the standardized method for identifying users. For improved security and consistency, you must now use the user's unique internal ID when referencing a user.
- If you already have the internal ID, you can use it directly.
- If you only have the user's email address, you'll need to fetch their internal ID first.
To get the user ID based on their email address:
- Retrieve and cache all users:
Call List all users to retrieve the full list of users in your organization. To ensure your application is performant, this data should be stored in a local database or cache that is updated periodically. - Find the user and get their ID:
Find the user object where themailfield matches the email you are searching for.
Copy the value of their_id. This is the internal ID.
Input changes
This section details the specific alterations to the input requirements between API versions.
API v1 input example
curl --location -g 'https://{{host}}/api/v1/courses/5757ea89c3f509b18c8624d1/stats/[email protected]?company={{company}}&apiKey={{apiKey}}'API v2 input example
curl --request GET \
--url 'https://app.staging.360learning-dev.com/api/v2/courses/stats?courseId[eq]=507f1f77bcf86cd799439011&userId[eq]=507f1f77bcf86cd799439011' \
--header '360-api-version: v2.0' \
--header 'accept: application/json'Main input differences
Change type | API v1 | API v2 |
|---|---|---|
Modified |
|
|
Removed |
| |
Removed |
| |
Modified |
|
|
Modified |
|
|
Output changes
This section details the specific alterations to the successful output returned between API versions.
API v1 output example
{
"attempts": [
{
"_id": "61af1d7011ee6c4786002f2a",
"progress": 100,
"score": 75,
"completedAt": "2021-12-15T15:46:50.326Z",
"firstActivity": "2021-12-07T08:38:08.474Z",
"globalTime": 50892,
"lastActivity": "2021-12-15T15:46:50.306Z"
}
]
}API v2 output example
[
{
"_id": "507f1f77bcf86cd799439011",
"versionNumber": 0,
"lang": "bg",
"firstActivityAt": "2025-06-30T13:23:56.059Z",
"lastActivityAt": "2025-06-30T13:23:56.059Z",
"timeSpent": 0,
"progress": 0,
"score": 0,
"completedAt": "2025-06-30T13:23:56.059Z",
"pathId": "507f1f77bcf86cd799439011",
"pathSessionId": "507f1f77bcf86cd799439011",
"courseId": "507f1f77bcf86cd799439011",
"userId": "507f1f77bcf86cd799439011"
}
]Main output differences
API v2 output has been flattened: no more sub-objects in the response body, you only get raw attempts.
API v2 introduces pagination for the List all courses statistics endpoint. Instead of returning all groups in a single response, it now returns a maximum of 500 course statistics per page. To retrieve subsequent pages, you need to follow the URL provided in the Link header of the response.
Change type | API v1 | API v2 |
|---|---|---|
Added |
| |
Added |
| |
Added |
| |
Added |
| |
Added |
| |
Modified |
|
|
Modified |
|
|
Modified |
|
|
Updated 21 days ago
