EdgeCron API Docs
API ReferenceRetries and Dead Letters

List retry policies

GET /retries/policies

List retry policies

List retry policies.

GET
https://api.edgecron.com/v1/retries/policies

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

This endpoint does not define path or query parameters.

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": {
    "total": 1,
    "page": 1,
    "page_size": 20,
    "items": [
      {
        "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.