get_bulk_webhook_logs
Check webhook delivery logs for bulk jobs to find why a completed job's callback wasn't delivered. Filter by job, status, or date to verify delivery success and timestamps.
Instructions
Check webhook delivery logs for bulk jobs: whether the completion notification was delivered to the user's callback_url, delivery status, and timestamps. Use this when a job shows as completed but the user's system never received the webhook — the classic "job finished but my integration didn't fire" debugging case.
Scope to one job with group_id (from list_bulk_jobs), or omit it to scan recent deliveries across all jobs. This tool is free of per-call credits.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number. Default 1. | |
| limit | No | Items per page (max 1000). Default 100. | |
| status | No | Filter by delivery status (e.g. 'success', 'failed'). | |
| date_to | No | ISO date upper bound. | |
| group_id | No | Scope logs to one job's group_id. Omit to see recent webhook deliveries across all jobs. | |
| date_from | No | ISO date lower bound. | |
| request_id | No | Filter by an individual request ID. | |
| sort_direction | No | Sort by creation time. 'desc' (newest first) is default. | desc |
| bulk_request_id | No | Filter by the job's bulk_request_id. |