Skip to main content
DELETE
/
events
/
{id}
curl -X DELETE "https://api.tktchurch.com/v1/events/123e4567-e89b-12d3-a456-426614174000" \
  -H "Authorization: Bearer {access_token}"
This endpoint requires authentication and the deleteEvent permission.

Path Parameters

id
string
required
The unique identifier (UUID) of the event to delete

Response

A successful request returns HTTP 204 No Content status.

Error Responses

error
object
Error details when the request fails
Common error cases:
  • 401 Unauthorized: Missing or invalid access token
  • 403 Forbidden: Insufficient permissions
  • 404 Not Found: Event not found
curl -X DELETE "https://api.tktchurch.com/v1/events/123e4567-e89b-12d3-a456-426614174000" \
  -H "Authorization: Bearer {access_token}"