API ReferenceRetries and Dead Letters
Cancel a retry job
POST /retries/jobs/{id}/cancel
Cancel a retry job
Cancel a retry job.
https://api.edgecron.com/v1/retries/jobs/{id}/cancel
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,
"app_id": "app_123",
"delivery_id": 101,
"attempt": 1,
"status": "pending",
"run_at": 1772534400,
"last_error": "string",
"created_at": "2026-07-01T12:00:00Z"
}
}Schema
| Parameters | Type | Required | Description |
|---|---|---|---|
id | integer | No | Resource identifier. |
app_id | string | No | Application identifier. |
delivery_id | integer | No | - |
attempt | integer | No | - |
status | pending / running / success / failed / canceled | No | Allowed: pending, running, success, failed, canceled. |
run_at | string (date-time) | No | - |
last_error | string | No | - |
created_at | string (date-time) | No | Creation timestamp. |