Query Parameters
API key used to authenticate and authorise the request.
Body Parameters
Unique identifier of the vendor with whom the order will be placed.
Array of domain objects. Each object should contain domain_name and an array of mailbox details.
Domain to which purchased domains will be configured to forward (e.g., smartlead.ai or customer’s tracking domain).
Customer or billing/contact details required by the vendor for domain purchase and provisioning. Includes name and other contact fields.
curl -X POST "https://smart-senders.smartlead.ai/api/v1/smart-senders/place-order?api_key=YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"vendor_id": 1,
"domains": [
{
"domain_name": "example.com",
"mailboxes": ["john@example.com", "jane@example.com"]
}
],
"forwarding_domain": "smartlead.ai",
"user_details": {
"name": "John Doe"
}
}'
Response Codes
Order placed successfully. Returns order confirmation details.
Invalid request parameters or malformed request body
Invalid or missing API key. Check your authentication.
Server error occurred. Please try again or contact support if the issue persists.
{
"ok": true,
"data": []
}