(id: string, body: { event?: string })
| 408 | } |
| 409 | |
| 410 | testWebhook(id: string, body: { event?: string }): Promise<TestWebhookResponse> { |
| 411 | return this.sdk.webhooks.test(id, body as TestWebhookRequest); |
| 412 | } |
| 413 | |
| 414 | // Per-delivery debugging (status/attempts/last_error/last_status_code) for one |
| 415 | // webhook. Single page by contract (no cursor); GET /v1/webhooks/{id}/deliveries. |
no test coverage detected