curl --request GET \
--url https://api.cal.com/v2/me/ooo \
--header 'Authorization: <authorization>'{
"status": "success",
"data": [
{
"userId": 2,
"id": 2,
"uuid": 2,
"start": "2023-05-01T00:00:00.000Z",
"end": "2023-05-10T23:59:59.999Z",
"toUserId": 2,
"notes": "Vacation in Hawaii",
"reason": "vacation"
}
]
}curl --request GET \
--url https://api.cal.com/v2/me/ooo \
--header 'Authorization: <authorization>'{
"status": "success",
"data": [
{
"userId": 2,
"id": 2,
"uuid": 2,
"start": "2023-05-01T00:00:00.000Z",
"end": "2023-05-10T23:59:59.999Z",
"toUserId": 2,
"notes": "Vacation in Hawaii",
"reason": "vacation"
}
]
}value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token
Maximum number of items to return
1 <= x <= 25025
Number of items to skip
x >= 00
Sort results by their start time in ascending or descending order.
asc, desc "?sortStart=asc OR ?sortStart=desc"
Sort results by their end time in ascending or descending order.
asc, desc "?sortEnd=asc OR ?sortEnd=desc"
Was this page helpful?