- Overview
- Authenticating
- SDKs
- Authentication
- Events
- Time off
- Access-credential
Submit time off updates
POST
/v1/timeoff
Time off
Request
Body Params application/json
timeOffEvents
array[object (TimeOffEvent) {7}]
required
eventId
string
required
Example:
C5C69845-DD77-487E-9C6A-708581B361E9
email
string
optional
Example:
bob@domain.com
uid
string
optional
Example:
ABC123HGbghdhdI
eventType
string
required
Example:
scheduled
startDate
string
required
endDate
string
required
timeOffType
string
optional
Example
{
"timeOffEvents": [
{
"eventId": "C5C69845-DD77-487E-9C6A-708581B361E9",
"email": "bob@domain.com",
"eventType": "scheduled",
"startDate": "2024-12-30",
"endDate": "2025-01-02",
"timeOffType": "leave"
},
{
"eventId": "C5C69845-DD77-487E-9C6A-708581B361E9",
"email": "mary@domain.com",
"eventType": "cancelled",
"startDate": "2024-11-30",
"endDate": "2025-11-30"
}
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.calven.com/v1/timeoff' \
--header 'Content-Type: application/json' \
--data-raw '{
"timeOffEvents": [
{
"eventId": "C5C69845-DD77-487E-9C6A-708581B361E9",
"email": "bob@domain.com",
"eventType": "scheduled",
"startDate": "2024-12-30",
"endDate": "2025-01-02",
"timeOffType": "leave"
},
{
"eventId": "C5C69845-DD77-487E-9C6A-708581B361E9",
"email": "mary@domain.com",
"eventType": "cancelled",
"startDate": "2024-11-30",
"endDate": "2025-11-30"
}
]
}'
Responses
🟢200Success
application/json
Body
timestamp
string
required
results
array[object (TimeoffEventResponse) {3}]
required
eventId
string
required
Example:
C5C69845-DD77-487E-9C6A-708581B361E9
resultCode
enum<number>
required
Allowed values:
0123
Example:
0
message
string
required
Example
{
"timestamp": "string",
"results": [
{
"eventId": "C5C69845-DD77-487E-9C6A-708581B361E9",
"resultCode": 0,
"message": "string"
}
]
}
🟢201Success
🟠401Payload when auth header is missing or invalid
🟠403403
Modified at 2024-07-30 00:24:05