Skip to main content
WEBHOOK
smtpDelivered
{
  "type": "SMTP",
  "event": "delivered",
  "relid": 123,
  "subject": "Test message subject",
  "to": "test@testdomain.com",
  "msgid": "010001823804f1a3-a09c363d-98c8-4609-b1f0-148736ffec6f-000000",
  "certifiedEmail": true,
  "timestamp": "2020-10-05 17:40:54",
  "status": "Entregado",
  "response": [
    {
      "eventType": "Send",
      "timestamp": "2022-07-22T01:35:33.268Z",
      "result": "18.234.148.6"
    },
    {
      "eventType": "Delivery",
      "timestamp": "2022-07-26T01:00:25.706Z",
      "result": "18.234.148.6"
    }
  ]
}

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 "delivered" para este webhook)

Example:

"delivered"

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 desde donde se hizo la solicitud del mensaje

subject
string

Asunto del mensaje

Example:

"Test message subject"

origin
string

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

msgid
string

ID único del mensaje en formato UUID

Example:

"010001823804f1a3-a09c363d-98c8-4609-b1f0-148736ffec6f-000000"

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:

"Entregado"

certifiedEmail
boolean

Solo aparece como true para emails certificados

Example:

true

response
object[]

Actividad registrada por el proveedor de email certificado

Response

200

Webhook recibido correctamente