Domain

Generate Mailbox Names

POST /v1/domain/generate-mailbox-names

POST/v1/domain/generate-mailbox-names
POST
/v1/domain/generate-mailbox-names

Generate mailbox name suggestions for a sender

Generate email address suggestions for a given sender name + domain.

Not required for purchase but used in the domain setup flow before POST /v1/domain. Suggested addresses follow patterns like john.smith@, smithjohn@, jsmith@.

count: min 1, max 100.

Authorization

x-api-key<token>

API key for Open API authentication

In: header

Request Body

application/jsonRequired

firstNamestring

Sender's first name.

Example: "John"

lastNamestring

Sender's last name.

Example: "Smith"

domainstring

The domain to generate addresses for (e.g. "tryoutreachteam.com").

Example: "tryoutreachteam.com"

countnumber

Number of suggestions to return. Min 1, max 100.

Example: 5Minimum: 1Maximum: 100

Responses

201
Mailbox names generated successfully

Request

curl -X POST \
  "https://open-api.saleshandy.com/v1/domain/generate-mailbox-names" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "firstName": "John",
  "lastName": "Smith",
  "domain": "tryoutreachteam.com",
  "count": 5
}'

Response

No response body