Skip to main content
DELETE
/
api
/
v1
/
calendar
/
events
/
{event_id}
Delete Event
curl --request DELETE \
  --url https://api.example.com/api/v1/calendar/events/{event_id}

Delete Calendar Event

Permanently delete a calendar event.

Authentication

Requires a valid user JWT token.

Path Parameters

event_id
string
required
UUID of the event to delete.

Example

curl -X DELETE https://api.ama2.me/api/v1/calendar/events/{event_id} \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
{
  "status": "ok"
}