Create GP Employment
Submit dynamic data for employee creation
Submits dynamic field values (as required by the schema returned from GET /v1/employees/schema) for a GP employment record.
Use this endpoint after getting the schema to know which fields are required, and after creating the basic employment record. The submitted values populate the dynamic sections: legal details and custom fields.
patch/v1/employees/{employeeId}/dynamic-details
Path parameters
employeeIdstring uuid required
Unique identifier for the employee
Request body
Example request
{
"legalDetails": {
"nationalId": "S1234567A",
"taxId": "123456789"
},
"customFields": {
"costCenter": "CC-001",
"projectCode": "PROJ-42"
}
}Response
Dynamic data submitted successfully