create_leave
Submit employee leave requests by specifying leave type, dates, and hours to manage vacation and time-off entries in the Simplicate system.
Instructions
Create leave/vacation entry
Input Schema
Name | Required | Description | Default |
---|---|---|---|
employee_id | No | ||
end_date | Yes | ||
hours | No | ||
leave_type | Yes | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"employee_id": {
"type": "string"
},
"end_date": {
"type": "string"
},
"hours": {
"type": "number"
},
"leave_type": {
"type": "string"
},
"start_date": {
"type": "string"
}
},
"required": [
"leave_type",
"start_date",
"end_date"
],
"type": "object"
}