Skip to main content
POST
/
api
/
v1
/
smart-senders
/
auto-generate-mailboxes
curl -X POST "https://smart-senders.smartlead.ai/api/v1/smart-senders/auto-generate-mailboxes?api_key=YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "vendor_id": "1",
    "domains": {
      "example.com": {
        "count": 3
      }
    }
  }'
{
  "ok": true,
  "data": []
}
Smart Senders API: Mailbox marketplace feature. Contact support@smartlead.ai for access.

Query Parameters

api_key
string
required
API key used to authenticate and authorize the request.

Body Parameters

vendor_id
string
required
Unique identifier of the vendor whose mailbox generation logic will be used.
domains
object
List of domains for which mailboxes need to be generated.

Headers

Content-Type
string
Must be application/json
curl -X POST "https://smart-senders.smartlead.ai/api/v1/smart-senders/auto-generate-mailboxes?api_key=YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "vendor_id": "1",
    "domains": {
      "example.com": {
        "count": 3
      }
    }
  }'

Response Codes

200
Success
Returns auto-generated mailbox email addresses for the requested domains.
400
Bad Request
Invalid request parameters or malformed request body
401
Unauthorized
Invalid or missing API key. Check your authentication.
500
Internal Server Error
Server error occurred. Please try again or contact support if the issue persists.
{
  "ok": true,
  "data": []
}