Skip to main content
GET
/
v1
/
webhooks
/
{id}
Retrieve Webhook
curl --request GET \
  --url https://api.example.com/v1/webhooks/{id}
id
string
required
The ID of the webhook.

Request

cURL
curl https://www.unosend.co/api/v1/webhooks/wh_123 \
  -H "Authorization: Bearer un_xxxxxxxxxx"

Response

200
{
  "id": "wh_123",
  "url": "https://yourapp.com/webhooks/unosend",
  "events": ["email.delivered", "email.bounced"],
  "created_at": "2024-01-15T10:30:00.000Z"
}