EdgeCron API Docs
API 参考重试与死信

列出重试任务

GET /retries/jobs

列出重试任务

调用 `GET /retries/jobs`,列出重试任务。

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

需要认证

每个请求都需要携带 `X-Key-ID`、`X-Timestamp` 和 `X-Signature`。签名为 `timestamp + "\n" + payload` 的 HMAC-SHA256 小写十六进制结果。

参数

参数位置类型必填说明
pagequeryinteger默认值:1
page_sizequeryinteger默认值:20
statusquerystring当前生命周期状态。
delivery_idqueryinteger-

请求体

该接口不需要 JSON 请求体。

响应

所有成功响应都使用 EdgeCron API 统一信封。

{
  "code": 0,
  "message": "success",
  "request_id": "req_abc123",
  "data": {
    "total": 1,
    "page": 1,
    "page_size": 20,
    "items": [
      {
        "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"
      }
    ]
  }
}

结构

参数类型必填说明
idinteger资源 ID。
app_idstring应用 ID。
delivery_idinteger-
attemptinteger-
statuspending / running / success / failed / canceled可选值:pending, running, success, failed, canceled。
run_atstring (date-time)-
last_errorstring-
created_atstring (date-time)创建时间。