Skip to main content

Read webhook delivery

GET 

/v2/config/webhooks/:webhookId/delivery/:deliveryId

This endpoint reads 1 payload delivery of a webhook. Give the webhook ID and the delivery ID in the path.

The service sends the delivery object as the whole response body. There is no wrapper field.

The service does not send the request headers, the request payload, the response headers or the response body of the delivery. It keeps them, but no endpoint gives them back.

Request

Path Parameters

    webhookId stringrequired
    deliveryId stringrequired

Responses

The service returned the webhook delivery.

Response Headers
    Schema
      id stringrequired

      Unique identifier of the delivery. This is the deliveryID field of the delivered payload.

      webhookId stringrequired

      Unique identifier of the webhook that made the delivery.

      responseStatusCode int32required

      HTTP status code that the payload URL sent. The value is 0 when the service could not reach the payload URL.

      responseStatusStr stringrequired

      HTTP status text that the payload URL sent. The value is an empty string when the service could not reach the payload URL.

      timestamp stringrequired

      UTC time when the delivery started.

      status stringrequired

      Possible values: [completed, failed]

      Result of the delivery. completed means the payload URL answered, also when it answered with an error code. Read responseStatusCode to see the answer. failed means the service could not reach the payload URL.

      statusDescription stringrequired

      Reason for a failure. The value is an empty string when the delivery succeeded.

    Loading...