Webhook Logs
Get Webhook Logs
Retrieves outgoing webhook and dynamic-delivery request logs for debugging.
get/v1/shops/{shopId}/webhook-logs
Request body
Example request
{
"page": 1
}Response
Example response
{
"current_page": 1,
"data": [
{
"id": 1,
"shop_id": 1,
"source": "notification",
"event": "NOTIFICATION.SHOP_INVOICE_PROCESSED",
"invoice_id": 1,
"invoice_item_id": null,
"url": "https://example.com/webhook",
"request_headers": null,
"request_body": {
"data": {
"invoice_id": 1
},
"event": "NOTIFICATION.SHOP_INVOICE_PROCESSED",
"shop_id": 1
},
"response_status": 200,
"response_body": "OK",
"success": true,
"error_type": null,
"error_message": null,
"duration_ms": 120,
"created_at": "2026-08-28T18:23:02.000000Z",
"updated_at": "2026-08-28T18:23:02.000000Z"
}
],
"first_page_url": "http://api.sellauth.test/v1/shops/1/webhook-logs?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "http://api.sellauth.test/v1/shops/1/webhook-logs?page=1",
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "http://api.sellauth.test/v1/shops/1/webhook-logs?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"next_page_url": null,
"path": "http://api.sellauth.test/v1/shops/1/webhook-logs",
"per_page": 20,
"prev_page_url": null,
"to": 1,
"total": 1
}Changes
No recorded changes to this endpoint across all 1 revision of this API.