### Send a test delivery

`POST /api/v1/admin/webhooks/endpoints/{id}/test`

Queues one synthetic delivery to the endpoint and returns its id so you can follow it in the log.

- Authentication: manager session (JWT) or API token
- Permission: `prm_notifications_manage` (Manage notification channels & templates)
- Risk: write
- Rate limit bucket: `t_egress`

#### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | integer | yes | Endpoint id. |

#### Response — 200 OK

```json
{
  "data": { "delivery_id": 77120 }
}
```

#### Note

The delivery is QUEUED, not sent. A 200 here says the job was created, not that your endpoint answered. Poll the delivery log for the outcome. It is also on the per-tenant egress budget, which is 5 a minute on a standard licence.

