Get a Webhook Delivery
Retrieve an existing Webhook Delivery
Path parameters
-
webhook_delivery_id parameter
GET /webhook_deliveries/{webhook_delivery_id}
curl \
-X GET https://api.arta.io/webhook_deliveries/{webhook_delivery_id} \
-H "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y"
Response examples (200)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"created_at": "2021-10-27T16:48:38.657228",
"id": "5b6e1621-454f-4f18-aecf-87192406effe",
"next_retry": "string",
"request_body": "{\"data\":{\"id\":432672},\"object\":\"webhook\",\"type\":\"ping\"}",
"resource_id": "9c67b26c-6b5d-4e19-a703-f7356f82d7e0",
"resource_type": "request",
"response_body": "{\"received\": true}",
"response_status_code": 202,
"status": "delivered",
"type": "ping",
"webhook_id": 432672,
"webhook_url": "https://hooks.mydomain.xyz/arta"
}
Response examples (404)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"errors": {
"detail": "string"
}
}