v1

latestSwagger 2.0Private2026-08-04128286690.5 KB
Account Services

POST Add an Account Email Address

Use this method to add a new email address to a Constant Contact account. If the email address you are adding already exists in the account the API will return a 409 conflict error.

When you add a new email address to an account, Constant Contact automatically sends an email to that address with a link to confirm it. After a user clicks that link, the account email status changes from UNCONFIRMED to CONFIRMED. You can use confirmed account email addresses in the email campaign from_email and reply_to_email headers. For more use case information, see Add an Account Email Address in the API guide.

post/account/emails

Request body

email_addressstring

The new email address you want to add to a Constant Contact account.

Example request

{
  "email_address": "dlang@example.com"
}

Response

Request successful.

email_addressstring

An email address associated with a Constant Contact account owner.

email_idinteger

The unique ID for an email address in a Constant Contact account.

confirm_statusstring

The confirmation status of the account email address. When you add a new email address to an account, Constant Contact automatically sends an email to that address with a link to confirm it. You can use any account email address with a <code>CONFIRMED</code> status to create an email campaign.

Example response

{
  "email_address": "dlang@example.com",
  "email_id": 2,
  "confirm_status": "UNCONFIRMED"
}