curl --request POST \
--url https://api.bindbee.dev/api/hris/v1/time-off \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-connector-token: <x-connector-token>' \
--data '{
"employee": "018b4bfb-5ece-70b1-ad5e-862a9433aa65",
"approver": "018b4bfb-6065-7f83-b11d-e85ea49e37c3",
"status": "APPROVED",
"employee_note": "Paid paid vacation! Scuba diving in Hawaii.",
"units": "HOURS",
"amount": 12,
"request_type": "VACATION",
"start_time": "2023-04-10T00:00:00Z",
"end_time": "2023-04-10T00:00:00Z"
}'