Calendar Feeds

Generate and manage calendar subscription feeds

GET/api/v1/calendar-feeds

List calendar feeds

Returns all calendar subscription feeds for the authenticated user.

curl https://api.offly.net/api/v1/calendar-feeds \
  -H "Authorization: Bearer YOUR_API_KEY"
Try it

Do not use production API keys on shared devices. Keys are stored in memory only.

POST/api/v1/calendar-feeds

Create a calendar feed

Generates a new iCal subscription URL.

Request body

FieldTypeDescription
namestringDescriptive name for the feed

Response

FieldTypeDescription
idstring(uuid)
namestring
urlstring(uri)
created_atstring(date-time)
curl -X POST https://api.offly.net/api/v1/calendar-feeds \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
Try it

Do not use production API keys on shared devices. Keys are stored in memory only.

DELETE/api/v1/calendar-feeds/{id}

Revoke a calendar feed

Revokes a calendar subscription URL.

Parameters

Parameters

NameTypeInDescription
id*string(uuid)path
curl -X DELETE https://api.offly.net/api/v1/calendar-feeds/{id} \
  -H "Authorization: Bearer YOUR_API_KEY"
Try it

Do not use production API keys on shared devices. Keys are stored in memory only.