Skip to main content
WEBHOOK
smtpBounce
{
  "type": "SMTP",
  "event": "bounce",
  "relid": 123,
  "to": "test@testdomain.com",
  "ip": "178.12.123.32",
  "subject": "Test message subject",
  "sender": "test@testdomain.com",
  "origin": "API",
  "msgid": "d3f26a70-075b-11eb-b547-478382137ef6",
  "custom_headers": {
    "x-test-header": "test Value"
  },
  "timestamp": "2020-10-05 17:40:54",
  "status": "Rebote duro",
  "response": "550 5.5.0 Requested action not taken: mailbox unavailable."
}

Documentation Index

Fetch the complete documentation index at: https://docs.opptima.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Usa tu API Key como Bearer token en el header Authorization.

Ejemplo: Authorization: Bearer YOUR_API_KEY

Obtén tu API Key en la página de Settings.

Body

application/json
type
string

Tipo de evento (siempre "SMTP" para este grupo)

Example:

"SMTP"

event
string

Evento generado (siempre "bounce" para este webhook)

Example:

"bounce"

relid
integer

ID interno del cliente

Example:

123

to
string

Dirección de email del destinatario

Example:

"test@testdomain.com"

ip
string

Dirección IP de la solicitud (no disponible para emails certificados)

Example:

"178.12.123.32"

subject
string

Asunto del mensaje

Example:

"Test message subject"

sender
string

Dirección del remitente (no disponible para emails certificados)

Example:

"test@testdomain.com"

origin
string

Origen del mensaje: SMTP o API (no disponible para emails certificados)

Example:

"API"

msgid
string

ID único del mensaje en formato UUID

Example:

"d3f26a70-075b-11eb-b547-478382137ef6"

certifiedEmail
boolean

Solo aparece como true para emails certificados

custom_headers
object

Headers personalizados (no disponible para mensajes API ni para emails certificados)

Example:
{ "x-test-header": "test Value" }
timestamp
string

Fecha y hora de procesamiento, zona horaria colombiana (GMT -5)

Example:

"2020-10-05 17:40:54"

status
string

Resultado de entrega en español (para emails certificados contendrá la respuesta del proveedor)

Example:

"Rebote duro"

response

Respuesta cruda del proveedor. Para emails certificados contendrá un array con la actividad registrada

Example:

"550 5.5.0 Requested action not taken: mailbox unavailable."

Response

200

Webhook recibido correctamente