Delete event
Allows you to delete an existing event from a specified calendar.
- HTTP Method:
DELETE
- Endpoint:
/rest-api/1/event-calendar/events/{event-uuid}
Replace {event-uuid}
with the unique identifier of the event to be updated.
Note: only events created by API calls are currently able to be deleted via API.
Request example:
fetch("https://<site-url>/rest-api/1/jira-event-calendar/events/{event-uuid}", {
method: "DELETE",
headers: {
"X-AldevaDigital-Rest-Token": "your-access-token",
},
});
Response example:
HTTP Status Code: 204 No Content
This indicates the event was successfully deleted. No response body is returned.