v1

latestOpenAPI 3.0.02026-07-17121287546.7 KB
Calendars

Save an ICS feed

post/v2/calendars/ics-feed/save

Headers

Authorizationstring required

value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token

Request body

urlsstring[] required

An array of ICS URLs

readOnlyboolean

Whether to allowing writing to the calendar or not

Example request

{
  "urls": [
    "https://cal.com/ics/feed.ics",
    "http://cal.com/ics/feed.ics"
  ]
}

Response

status'success' | 'error' required

Example response

{
  "status": "success",
  "data": {
    "id": 1234567890,
    "type": "ics-feed_calendar",
    "userId": 1234567890,
    "teamId": 1234567890,
    "appId": "ics-feed"
  }
}