How can we help you?

FeraCalendar API authentication

Product: FeraCalendar Topic: API Versions: Applies to all documented versions Current

Audience: Application developers
Editorial status: Published — Source Validated
Product: FeraCalendar
Classification: public

REST

Send the FeraAuth JWT in x-auth-token. Managed-product, instance, owner, membership, role, and lifecycle rules then apply as described per operation.

curl https://cal.feradel.com/api/v1/calendars/v/15 \\n+  --header "x-auth-token: $FERA_AUTH_TOKEN"

CalDAV

Send HTTP Basic credentials on every non-public request. The adapter verifies credentials through FeraAuth and resolves calendar read or write capability.

curl --request PROPFIND \\n+  --url https://caldav.feradel.com/caldav/principals/INSTANCE_UUID/PERSON_UUID \\n+  --user "$FERA_CALDAV_USERNAME:$FERA_CALDAV_PASSWORD" \\n+  --header "Depth: 0"

Rejected credentials return 401; insufficient capability returns 403.