EdgeCron API Docs
API ReferenceRetries and Dead Letters

Get a retry policy

GET /retries/policies/{id}

Get a retry policy

Get a single retry policy.

GET
https://api.edgecron.com/v1/retries/policies/{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": 101,
    "app_id": "app_123",
    "name": "billing-webhook",
    "max_attempts": 1,
    "backoff_type": "fixed",
    "initial_delay_sec": 1,
    "max_delay_sec": 1,
    "status": "string",
    "created_at": "2026-07-01T12:00:00Z"
  }
}

Schema

ParametersTypeRequiredDescription
idintegerNoResource identifier.
app_idstringNoApplication identifier.
namestringNo-
max_attemptsintegerNo-
backoff_typefixed / exponential / linearNoAllowed: fixed, exponential, linear.
initial_delay_secintegerNo-
max_delay_secintegerNo-
statusstringNoCurrent lifecycle state.
created_atstring (date-time)NoCreation timestamp.