5cb82e369b70

latestOpenAPI 3.0.32026-08-06134961.9 KB
Temporary work payroll placements, for hirers

Create a minimal definition for a new temporary work payroll placement.

Create a definition for a new temporary work payroll placement. The minimal information must be provided, and a number of optional fields may be passed.

post/public/temporary-work-payroll-placements/hirer/create-temporary-work-payroll-placement-definition-minimal-v1

Request body

workerIdinteger required

The ID of the worker that the hirer wants to work for them.

contactPersonIdinteger required

The ID of the contact person of the hirer for the placement.

startDatestring date required

The day the worker is going to work for the hirer for the first time, for this placement.

jobDescriptionstring nullable

Describes what kind of work the worker will perform under this placement. This can be anything, like a function name or a description of the activities.

Example request

{
  "workerId": 1,
  "contactPersonId": 1,
  "jobDescription": "Truck driver",
  "startDate": "2023-03-15T00:00:00.000+00:00"
}

Response

The operation completed successfully.

placementDefinitionIdinteger required

The ID of the placement definition that has been created.

Example response

{
  "placementDefinitionId": 1
}