latestOpenAPI 3.1.02026-08-0817082.3 KB

cac8702ed2aa

Learner Training Modules

Get learner training modules

Get many learner training modules.

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 modules that satisfy all the filters.

Within a single filter, multiple values are applied as OR conditions.

get/v1/learner-training-modules

Query parameters

idstring[]

Use this parameter to filter learner training modules by id.

[
  "ltm456ghi9"
]
learnerIdstring[]

Use this parameter to filter learner training modules by learner id.

[
  "abc123def4"
]
learnerStatusstring[]

Use this parameter to filter learner training modules by the status of the learner. When omitted, learner training modules for learners of all statuses will be included in the response.

[
  "ACTIVE"
]
trainingCampaignIdstring[]

Use this parameter to filter learner training modules by training campaign id.

[
  "tc456xyz78"
]
trainingCampaignStatusstring[]

Use this parameter to filter learner training modules by the status of the training campaign. When omitted, learner training modules for training campaigns of all statuses will be included in the response.

[
  "ACTIVE"
]
limitinteger

Use this parameter to limit the number of entities returned.

cursorstring

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:

  1. GET /v1/{endpoint} → returns data + hasMore: true, last entity id: "xyz789end"
  2. GET /v1/{endpoint}?cursor=xyz789end → returns next page

Response

Success

limitinteger
hasMoreboolean

Example response

{
  "data": [
    {
      "id": "ltm456ghi9",
      "trainingCampaignId": "tc456xyz78",
      "learnerId": "abc123def4",
      "moduleName": "Foundations",
      "lengthInMinutes": 45,
      "assignedAt": "2025-05-01T00:00:00Z",
      "status": "WITHIN_DEADLINE",
      "statusUpdatedAt": "2025-06-10T21:39:59Z"
    }
  ]
}