curl --request POST \
--url https://api.cal.com/v2/calendars/ics-feed/save \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"urls": [
"https://cal.com/ics/feed.ics",
"http://cal.com/ics/feed.ics"
],
"readOnly": false
}
'{
"status": "success",
"data": {
"id": 1234567890,
"type": "ics-feed_calendar",
"userId": 1234567890,
"teamId": 1234567890,
"appId": "ics-feed",
"invalid": false
}
}curl --request POST \
--url https://api.cal.com/v2/calendars/ics-feed/save \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"urls": [
"https://cal.com/ics/feed.ics",
"http://cal.com/ics/feed.ics"
],
"readOnly": false
}
'{
"status": "success",
"data": {
"id": 1234567890,
"type": "ics-feed_calendar",
"userId": 1234567890,
"teamId": 1234567890,
"appId": "ics-feed",
"invalid": false
}
}value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token
success, error "success"
Show child attributes
The id of the calendar credential
1234567890
The type of the calendar
"ics-feed_calendar"
The user id of the user that created the calendar
1234567890
The team id of the user that created the calendar
1234567890
The slug of the calendar
"ics-feed"
Whether the calendar credentials are valid or not
false
Was this page helpful?