Get webhook delivery history
curl --request GET \
--url https://api.videobgremover.com/v1/webhooks/deliveries \
--header 'X-Api-Key: <api-key>'
{
"video_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"total_deliveries": 123,
"deliveries": [
{
"event_type": "job.started",
"webhook_url": "<string>",
"attempt_number": 123,
"delivery_status": "pending",
"http_status_code": 123,
"error_message": "<string>",
"scheduled_at": "2023-11-07T05:31:56Z",
"delivered_at": "2023-11-07T05:31:56Z",
"payload": {},
"created_at": "2023-11-07T05:31:56Z"
}
]
}