/accounts Authentication
Send your organization API key as a Bearer credential.
Authorization: Bearer YOUR_API_KEY Body
application/json Account data required to create a new email account.
first_name string required First name of the account owner
John last_name string required Last name of the account owner
Doe email string required Email address of the account
john.doe@example.com imap_password string required IMAP password for the email account
imap-secret-password smtp_password string required SMTP password for the email account
smtp-secret-password smtp_host string required SMTP host (e.g., smtp.gmail.com)
smtp.gmail.com smtp_port number required SMTP port (default: 465)
465 imap_host string required IMAP host (e.g., imap.gmail.com)
imap.gmail.com imap_port number required IMAP port (default: 993)
993 cooldown_start number Cooldown start period in seconds (default: 180)
180 cooldown_end number Cooldown end period in seconds (default: 360)
360 signature string Email signature text
Best regards, John Doe daily_limit number Daily sending limit (default: 50)
50 warmup any Warmup configuration object
{"enable":false,"limit":20,"start":1} provider_code number required Email provider code (1=Google, 2=Yandex, 3=Mailru/VK, 4=Custom IMAP/SMTP)
Allowed values: 1, 2, 3, 4
4 Response
application/json Account successfully created
id number required ID of the account
1 email string required Email of the account
user@example.com first_name string required First name
John last_name string required Last name
Doe warmup boolean required Whether warmup is enabled
true warmup_last_date_send string required Last date when warmup sent an email
2025-09-20T12:00:00.000Z last_type_send_email string required Type of last sent email
warmup warmup_start_date string required Date when warmup started
2025-09-10T10:00:00.000Z warmup_sent_today number required Number of warmup emails sent today
5 warmup_daily_limit number required Warmup daily limit
20 warmup_starting_email_number number required Warmup starting email number
1 expected_to_send_warmup_emails number required Expected to send warmup emails
50 service string required Service (google, yandex, etc.)
google limit number required Sending limit per day
50 sent_today number required Sent today
10 total_sent number required Total sent emails
300 id_previous_sending_campaign number required ID of previous sending campaign
123 cooldown_start number required Cooldown start (seconds)
180 cooldown_end number required Cooldown end (seconds)
360 is_account_ready string required Date when account is ready
2025-09-18T09:00:00.000Z user_id number required User ID owning the account
42 tags string[] required Tags assigned to account
["Disconnected", "Bounce"] last_block_account_date string required Date when account was last blocked
2025-09-21T14:00:00.000Z error_text string required Error text if account failed to connect
Invalid credentials signature string required Signature attached to outgoing emails
Best regards, John Invalid request body (e.g. missing required fields, or invalid field values)
message string[] required List of detailed validation or business error messages
["Name cannot be empty", "Field must be greater than 0"] error string required Short error description
Bad Request statusCode number required HTTP status code of the error
400 This request is unauthorized (either the Authorization header is missing or invalid, or the API key has been revoked)
message string[] required List of messages explaining why the request was unauthorized
["User is not authorized", "Invalid API key"] error string required Short error description
Unauthorized statusCode number required HTTP status code of the error
401 You have exceeded the rate limit. Please check the rate limit docs for more information.
message string[] required List of messages explaining the rate limiting issue
["Too many requests, please try again later"] error string required Short error description
Too Many Requests statusCode number required HTTP status code of the error
429