POST
/
v2
/
calendars
/
ics-feed
/
save
curl --request POST \
  --url https://api.cal.com/v2/calendars/ics-feed/save \
  --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
  }
}

Body

application/json
urls
string[]
required

An array of ICS URLs

Example:
[
  "https://cal.com/ics/feed.ics",
  "http://cal.com/ics/feed.ics"
]
readOnly
boolean
default:true

Whether to allowing writing to the calendar or not

Example:

false

Response

201 - application/json
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object
required