curl --request GET \
--url https://{host}/talent-training/api/v2/realized-trainings/{id} \
--header 'Authorization: <authorization>'{
"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
}Retrieve a single realized-training by its id.
curl --request GET \
--url https://{host}/talent-training/api/v2/realized-trainings/{id} \
--header 'Authorization: <authorization>'{
"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
}API key. Value must be formatted like so: lucca application={api_key}.
Id of the realized-training.
x >= 1Ok
A realized-training represents a completed training process for a given employee.
ID of the employee who realized said training.
x >= 1Date of the first day of the training session.
Date of the last day (included) of the training session.
Duration of the training in hours (e.g. "2.5" means two and a half hours).
0.01x >= 1Show child attributes
Reference of the training-demand that led to the registration to this training session.
x >= 1Reference of the training session the employee was registered on.
x >= 1Whether the employee actually attended the training or not. You may not create a new realized-training with hasAttended: false, but you may retrieve existing ones in a GET request.
Was this page helpful?