Skip to main content
GET
/
webhooks
/
{webhook_id}
{
  "id": 1,
  "webhook_id": "wh_1234567890abcdef",
  "name": "Webhook de Entrega",
  "url": "https://meusite.com/webhook",
  "events": [
    "delivered",
    "bounced"
  ],
  "secret_key": "sk_***",
  "is_active": true,
  "retry_count": 3,
  "timeout_seconds": 30,
  "headers": {
    "X-Custom": "valor"
  },
  "created_at": "2025-01-21T16:30:00Z",
  "updated_at": "2025-01-21T16:30:00Z",
  "created_by": "[email protected]"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

webhook_id
integer
required

ID do webhook

Required range: x >= 1

Response

Webhook encontrado com sucesso

Modelo de resposta para webhook

id
integer
required
webhook_id
string
required
name
string
required
url
string
required
events
enum<string>[]
required

Tipos de eventos de email que podem disparar webhooks

Available options:
sent,
delivered,
bounced,
soft_bounced,
hard_bounced,
opened,
clicked,
complaint,
unsubscribed,
deferred,
rejected,
suppressed,
test
is_active
boolean
required
retry_count
integer
required
timeout_seconds
integer
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
secret_key
string | null
headers
Headers · object
created_by
string | null