How to delete event in local calendar by restAPI

GET http://:8123/api/calendars/<calendar_entity>?start=2023-05-01T07:00:00.000Z&end=2025-06-12T07:00:00.000Z

i can get event calendar_entity
{
“start”: {
“date”: “2024-04-04”
},
“end”: {
“date”: “2024-04-05”
},
“summary”: “testcreate”,
“description”: “”,
“location”: null,
“uid”: “1dd5d49c-f236-11ee-ab9f-042b58111a71”,
“recurrence_id”: null,
“rrule”: null
}

How to delete event in local calendar by restAPI ?

Did you ever figure this out?

I looked through the Rest API, and the delete_event doesn’t appear to be exposed. It’s also not available in the UI, so I guess that’s consistent. If you got this to work, please share!