Our v3 API is now available! Learn more by visiting the v3 developer portal . Creating new v2 API keys is no longer supported.

Account Summary Information

Use this endpoint to view (GET) or update (PUT) account-related information for the authorized Constant Contact account. The account is identified by the access token used when making the call to the API, as with all API calls.

Methods:

Click a method to view its documentation

GET PUT

Description TOP

Privileges required : account:write

Updates account-related information for the authorized Constant Contact account.

PUT: https://api.constantcontact.com/v2/account/info

Test API

name

type

default

description

api_key

query

REQUIRED; The API key for the application

Example JSON Request Body TOP

  1. {
  2. "website":"http://www.example.com",
  3. "organization_name":"My Company",
  4. "first_name":"Mary Jane",
  5. "last_name":"Doe",
  6. "email":"mjdoe@example.com",
  7. "phone":"55555555",
  8. "country_code":"US",
  9. "state_code":"MA",
  10. "organization_addresses":[
  11. {
  12. "city":"Anytown",
  13. "line1":"123 Maple Street",
  14. "line2":"Suite 222",
  15. "line3":"Cherry Hill Park",
  16. "postal_code":"11111",
  17. "country_code":"US",
  18. "state_code":"MA"
  19. }
  20. ]
  21. }

Response Codes TOP

code

description

204

Account information successfully updated

400

Either JSON was malformed or there was a data validation error

401

Authentication failure

406

Unsupported Accept Header value, must be application/json

415

Unsupported content-type in the header, use application/json

500

Internal server error occurred

522

Server connection timed out; please retry

Structure TOP

property

type (max length)

description

Example Response TOP

  1. {
  2. "website":"http://www.example.com",
  3. "organization_name":"My Company",
  4. "time_zone":"US/Eastern",
  5. "first_name":"Mary Jane",
  6. "last_name":"Doe",
  7. "email":"mjdoe@example.com",
  8. "phone":"55555555",
  9. "company_logo":"https://ih.constantcontact.com/fs137/1100371573368/img/90.jpg",
  10. "country_code":"US",
  11. "state_code":"MA",
  12. "organization_addresses":[
  13. {
  14. "city":"Anytown",
  15. "line1":"123 Maple Street",
  16. "line2":"Suite 222",
  17. "line3":"Cherry Hill Park",
  18. "postal_code":"11111",
  19. "country_code":"US",
  20. "state_code":"MA"
  21. }
  22. ]
  23. }