API ReferenceSchedule Triggers
Delete a schedule
DELETE /schedules/{id}
Delete a schedule
Delete a schedule.
https://api.edgecron.com/v1/schedules/{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
| Parameters | In | Type | Required | Description |
|---|---|---|---|---|
id | path | integer | Yes | Resource 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": 101,
"deleted": true
}
}