v1

latestOpenAPI 3.1.0Apache 2.02026-07-22160175414.0 KB
Realized-trainings

List realized-trainings (v2)

Retrieve a paginated list of realized trainings. It includes all realized trainings that have been manually imported via CSV file, imported through the process in Lucca Training, or created via the API.

get/talent-training/api/v2/realized-trainings

Query parameters

ownerIdsinteger[]

Filter out realized-trainings by employee ID.

[
  416,
  23
]
hasAttendedboolean

Filter out realized-trainings on whether their employee actually attended. When omitted, all realized-trainings are returned.

sessionEndOnBeforestring date

Filter out realized-trainings on their end date (lower).

sessionEndOnAfterstring date

Filter out realized-trainings on their end date (greater).

trainingIdinteger[]

Filter out realized-trainings based on the corresponding training.

fields.root'count'

Include collection properties.

pageinteger

Page number

limitinteger

Page size

Response

OK

prevstring nullable
nextstring nullable
countinteger nullable

Example response

{
  "items": [
    {
      "id": 235,
      "ownerId": 416,
      "training": {
        "id": 45,
        "title": "Mastering French: From Basics to Fluency",
        "categoryId": 1,
        "providerUrl": "https://elan-francais.fr",
        "level": "Beginner"
      },
      "trainingDemandId": 4356,
      "sessionId": 12,
      "sessionStartsOn": "2025-01-04",
      "sessionEndsOn": "2025-01-04",
      "hasAttended": true,
      "durationInHours": 14
    }
  ]
}