Creating Email Addresses

The Email API allows you to create custom email addresses on your A1Base account with the domain a1send.com. To setup a custom domain (i.e [email protected]) please contact the founders at [email protected] or [email protected]

Endpoint

Email addresses must be between 5 and 30 characters long.

POST https://api.a1base.com/v1/emails/{account_id}/create-email

Request Parameters

ParameterTypeRequiredDescription
addressstringYesThe local part of the email address (before the @ symbol)
domain_namestringYesThe domain name to use for the email address

Example Request

curl --location 'https://api.a1base.com/v1/emails/{account_id}/create-email' \
--header 'X-API-Key: YOUR_API_KEY' \
--header 'X-API-Secret: YOUR_API_SECRET' \
--header 'Content-Type: application/json' \
--data '{
    "address": "jane",
    "domain_name": "a1send.com"
}'

Example Response

{
    "status": "success",
}

Error Responses

Status CodeDescription
400Invalid request parameters
401Invalid API credentials
403Domain not authorized for account
409Email address already exists