Job
Create the employee's job. A job needs to be created in order to define a compensation.
Attributes
| Attribute | Required? | Default |
|---|---|---|
title | Yes | |
hire_date | Yes | |
two_percent_shareholder | ||
state_wc_covered | ||
state_wc_class_code |
Sample JSON
{
"idempotency_key": "bcfc9744-0ab3-4ef3-ab0d-e728255d659c",
"batch_action" : "create",
"batch": [
{
"entity_type": "employee",
"person": {
"external_id": "employee-abc-123",
"first_name": "Alice",
"last_name": "Smith"
},
"job": {
"title": "Software Engineer",
"hire_date": "2023-08-20"
}
}
]
}Check here to see how this looks in the context of a full batch example.
Updated 1 day ago