Skip to main content
GET
/
webhooks
/
{uuid}
Get a webhook
curl --request GET \
  --url https://api.jetemail.com/webhooks/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "webhook": {
    "uuid": "a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d",
    "name": "Production Webhook",
    "url": "https://example.com/webhook",
    "secret": "whsec_abc123def456...",
    "events": [
      "outbound.delivered",
      "outbound.bounced"
    ],
    "status": "enabled",
    "filter_users": null,
    "filter_domains": null,
    "created_at": 1736524800,
    "last_modified": 1736524800
  }
}

Authorizations

Authorization
string
header
required

API key for account management endpoints. Use your api_ prefixed token.

Path Parameters

uuid
string<uuid>
required

UUID of the webhook to retrieve

Response

Webhook retrieved successfully

success
boolean
Example:

true

webhook
object