create_absence
Create employee absence records in Simplicate by specifying absence type, start date, and end date to track time off and manage workforce availability.
Instructions
Create absence record
Input Schema
Name | Required | Description | Default |
---|---|---|---|
absence_type | Yes | ||
employee_id | No | ||
end_date | Yes | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"absence_type": {
"type": "string"
},
"employee_id": {
"type": "string"
},
"end_date": {
"type": "string"
},
"start_date": {
"type": "string"
}
},
"required": [
"absence_type",
"start_date",
"end_date"
],
"type": "object"
}