v1
latestOpenAPI 3.1.02026-07-26294215839.4 KBTraining
Public API
Create Employee Training Record
Creates a new training record for the specified employee. The 'completed' date (yyyy-mm-dd) and 'type' (training type ID) are required. Optional fields include instructor, hours, credits, notes, and cost. The authenticated caller must have permission to add trainings for the employee.
OAuth Scopes: training.write
post/api/v1/training/record/employee/{employeeId}
Path parameters
employeeIdinteger required
The internal employee ID of the employee to add a training record to.
Request body
Example request
{
"completed": "2026-03-12",
"cost": {
"currency": "USD",
"amount": "100.00"
},
"instructor": "Bob Jones",
"hours": "16",
"credits": "4",
"notes": "sample note",
"type": "4"
}Response
Created