cac8702ed2aa
Get learner training campaigns
Get many learner training campaigns. Only learner training campaigns for ACTIVE training campaigns are included in the response.
The query parameter filters are applied as AND conditions across different filters. If multiple filters are used, the response will include only the learner training campaigns that satisfy all the filters.
Within a single filter, multiple values are applied as OR conditions.
Query parameters
Use this parameter to filter learner training campaigns by id.
[ "ltc789def0" ]
Use this parameter to filter learner training campaigns by learner id.
[ "abc123def4" ]
Use this parameter to filter learner training campaigns by training campaign id.
[ "tc456xyz78" ]
Use this parameter to filter learner training campaigns by the status of the learner. When omitted, learner training campaigns for learners of all statuses will be included in the response.
[ "ACTIVE" ]
Use this parameter to filter learner training campaigns by enrollment status.
[ "ACTIVE" ]
Use this parameter to filter learner training campaigns by completion status.
[ "WITHIN_DEADLINE" ]
Use this parameter to limit the number of entities returned.
Use this parameter to paginate through entities. The cursor is the id of the last entity you want to start from.
To get the first page, omit this parameter.
To get the next page, use the id of the last entity from the previous response. Continue paginating while hasMore is true in the response.
Example workflow:
- GET /v1/{endpoint} → returns data + hasMore: true, last entity id: "xyz789end"
- GET /v1/{endpoint}?cursor=xyz789end → returns next page
Response
Success
Example response
{
"data": [
{
"id": "ltc789def0",
"trainingCampaignId": "tc456xyz78",
"learnerId": "abc123def4",
"enrollmentStatus": "ACTIVE",
"completionStatus": "WITHIN_DEADLINE",
"nextTrainingAt": "2026-09-01T00:00:00Z",
"deadline": "2025-12-10T00:00:00Z"
}
]
}