Skip to main content
GET
/
postfix-consult
/
Validate mailbox for sending
curl --request GET \
  --url https://api-v2.missioninbox.com/postfix-consult/
[
  {
    "allow": true,
    "transporter": "<string>",
    "server_status": "<string>",
    "sender_first_name": "<string>",
    "sender_last_name": "<string>",
    "transporter_key": "<string>",
    "customer_id": 123,
    "customer_email": "jsmith@example.com",
    "server_reference": "<string>",
    "reply_to": "jsmith@example.com",
    "uses_smtp_for_mailgun": true,
    "mailgun_smtp_password": "<string>"
  }
]

Query Parameters

from
string
required

Email address to validate (e.g., 'user@domain.com' or 'Name user@domain.com')

Response

allow
boolean
required

Whether email sending is permitted

transporter
string
required

Mail service provider (e.g., 'Mailgun')

server_status
string
required

Relay server status

sender_first_name
string
required

Sender's first name

sender_last_name
string
required

Sender's last name

transporter_key
string
required

API key for mail service

customer_id
integer
required

User ID for tracking

customer_email
string<email>
required

User's email address

server_reference
string
required

Server reference identifier

reply_to
string<email>

Reply-to address (optional)

uses_smtp_for_mailgun
boolean

Whether to use SMTP for Mailgun

mailgun_smtp_password
string

SMTP password for Mailgun