Webhooks

List Deliveries

Returns a paginated list of delivery attempts for a webhook, ordered by most recent first. Includes the request payload, response body, response code, and timing for each attempt.

get/webhooks/{id}/deliveries

Query parameters

firstinteger

Number of results to return from the start of the range.

afterstring

Return results after this cursor. Use page_info.end_cursor from the previous response to fetch the next page.

Response

deliveries listed

Example response

{
  "data": [
    {
      "event": "payment.succeeded",
      "id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "replayed_from": "whdel_MTcwMDAwMDAwMDAwMHx0ZXN0",
      "request_body": {
        "data": {
          "id": "pay_123"
        },
        "id": "msg_original",
        "type": "payment.succeeded"
      },
      "resource_id": "pay_123",
      "response_body": {
        "ok": true
      },
      "response_code": 200,
      "sent_at": "2026-01-01T12:00:00.000Z",
      "success": true,
      "total_time": 0.31
    }
  ],
  "page_info": {
    "end_cursor": "WyJjdXJzb3IiLDFd"
  }
}

Changes

Changed in 5 of the 74 revisions of this API.418

  • ff3a7657356311See the full diff
    • ▲

      for the query request parameter first, default value 50 was added

      request-parameter-default-value-added

    • ●

      for the query request parameter first, the max was set to 100.00

      request-parameter-max-set

    • ▲

      the response property // became nullable for the status

      response-property-became-nullable

    • ▲

      the // response's property type changed from unknown to object for status

      response-property-type-changed

    • ▲

      the // response's property type changed from unknown to object null for status

      response-property-type-changed

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the required property // to the response with the status

      response-required-property-added

    • ○

      added the optional property / to the response with the status

      response-optional-property-added

    • ○

      added the optional property / to the response with the status

      response-optional-property-added

    • ○

      added the optional property / to the response with the status

      response-optional-property-added

    This revision also has 9 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • ○

      endpoint added

      endpoint-added

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

Of the 74 revisions, 1 has no diff computed.