Domain Events
Domain DNS Error
Triggered when there's a DNS configuration issue with your sending domain.
This event indicates that your domain's DNS records (SPF, DKIM, MX, or Return Path) may be misconfigured or have become invalid. This can affect email deliverability.
Payload structure: This event has a different structure than message events:
- server: Information about the server that owns this domain
- domain: The domain name with DNS issues
- uuid: Unique identifier for the domain
- dns_checked_at: Timestamp when DNS was checked
- Individual status and error fields for SPF, DKIM, MX, and Return Path
Action required: Check your domain's DNS settings in the dashboard and verify all records are correctly configured.
postWebhookDomainDNSError
Payload
Example payload
{
"message": {
"id": 12345,
"token": "abc123XYZ789",
"direction": "outgoing",
"message_id": "a1b2c3d4-e5f6-7890@rp.arkhq.io",
"to": "user@example.com",
"from": "hello@yourdomain.com",
"subject": "Welcome to our service",
"timestamp": 1704672000.123456,
"spam_status": "NotChecked",
"tag": "onboarding",
"metadata": {
"user_id": "usr_123456",
"campaign_id": "camp_789012"
}
},
"original_message": {
"id": 12345,
"token": "abc123XYZ789",
"direction": "outgoing",
"message_id": "a1b2c3d4-e5f6-7890@rp.arkhq.io",
"to": "user@example.com",
"from": "hello@yourdomain.com",
"subject": "Welcome to our service",
"timestamp": 1704672000.123456,
"spam_status": "NotChecked",
"tag": "onboarding",
"metadata": {
"user_id": "usr_123456",
"campaign_id": "camp_789012"
}
},
"bounce": {
"id": 12345,
"token": "abc123XYZ789",
"direction": "outgoing",
"message_id": "a1b2c3d4-e5f6-7890@rp.arkhq.io",
"to": "user@example.com",
"from": "hello@yourdomain.com",
"subject": "Welcome to our service",
"timestamp": 1704672000.123456,
"spam_status": "NotChecked",
"tag": "onboarding",
"metadata": {
"user_id": "usr_123456",
"campaign_id": "camp_789012"
}
},
"status": "Sent",
"details": "Message for user@example.com accepted by 1.2.3.4:25 (mx.example.com)",
"output": "250 2.0.0 OK",
"sent_with_ssl": true,
"time": 1.51,
"timestamp": 1704672000.123456,
"classification": "invalid_recipient",
"classification_code": 10,
"smtp_enhanced_code": "5.1.1",
"remote_host": "mx1.gmail.com",
"url": "https://yourdomain.com/welcome",
"token": "abc123def456",
"ip_address": "203.0.113.45",
"user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)",
"server": {
"uuid": "a1b2c3d4-e5f6-7890",
"name": "Production",
"permalink": "production",
"organization": "acme-corp"
},
"domain": "yourdomain.com",
"uuid": "a1b2c3d4-e5f6-7890",
"dns_checked_at": 1704672000.123456,
"spf_status": "Missing",
"spf_error": "No SPF record exists for this domain",
"dkim_status": "OK",
"mx_status": "OK",
"return_path_status": "Missing",
"return_path_error": "There is no return path record at rp.yourdomain.com",
"volume": 950,
"limit": 1000
}Response
Webhook received successfully