GET
/
webhook-results
/
{id}
curl -X GET \
 /webhook-results/{id} \
 --header "Authorization: Bearer <token>"
{
  "id": "ad8b3b9d-5b1a-4e1a-8b3b-9d5b1a4e1a8b",
  "requestId": "<string>",
  "method": "<string>",
  "url": "<string>",
  "httpOptions": [
    "<string>"
  ],
  "request": [
    "<string>"
  ],
  "response": [
    "<string>"
  ],
  "throwable": [
    "<string>"
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "attempted": true,
  "successful": true
}

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Path Parameters

id
string
required

WebhookResult identifier

Response

200
application/json
WebhookResult resource
id
string
Example:

"ad8b3b9d-5b1a-4e1a-8b3b-9d5b1a4e1a8b"

requestId
string

The request ID of the webhook (X-Webhook-Id)

method
string

The HTTP method used to send the webhook

url
string

The recipient URL of the webhook

httpOptions
string[]

The HTTP options of the webhook

request
string[]

The request body of the webhook

response
string[] | null

The response body of the webhook delivery

throwable
string[] | null

The throwable body which occurred during the webhook delivery

createdAt
string
updatedAt
string
attempted
boolean

If the webhook was attempted

successful
boolean

If the webhook was successful