List Webhook Deliveries
Retrieve a paginated collection of Webhook Deliveries belonging to your Organization
GET /webhook_deliveries
curl \
-X GET https://api.arta.io/webhook_deliveries \
-H "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y"
Response examples (200)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx
# Payload
{
"items": [
{
"created_at": "2021-10-27T16:48:38.657228",
"id": "5b6e1621-454f-4f18-aecf-87192406effe",
"next_retry": "string",
"resource_id": "9c67b26c-6b5d-4e19-a703-f7356f82d7e0",
"resource_type": "request",
"response_status_code": 202,
"status": "delivered",
"type": "ping",
"webhook_id": 432672,
"webhook_url": "https://hooks.mydomain.xyz/arta"
}
],
"metadata": {
"page": 1,
"page_size": 20,
"total_count": 1
}
}