EdgeCron API Docs
API ReferenceEvent Triggers

Delete an event

DELETE /events/{id}

Delete an event

Delete an event.

DELETE
https://api.edgecron.com/v1/events/{id}

Authentication required

Send `X-Key-ID`, `X-Timestamp`, and `X-Signature` with every request. The signature is lowercase hex HMAC-SHA256 over `timestamp + "\n" + payload`.

Parameters

ParametersInTypeRequiredDescription
idpathintegerYesResource identifier.

Request body

This endpoint does not require a JSON request body.

Response

All successful responses use the EdgeCron API envelope.

{
  "code": 0,
  "message": "success",
  "request_id": "req_abc123",
  "data": {
    "id": 501,
    "deleted": true
  }
}