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

Individual Contacts

Use this endpoint to retrieve (GET), update (PUT), or optout/unsubscribe (DELETE) a contact. To create a new contact, use the POST method for the contacts-collection API .

Methods:

Click a method to view its documentation

GET PUT DELETE

Description TOP

Privileges required : contacts:write

Update the information for an existing contact specified by the contactId path parameter (REQUIRED).

NOTE : When you update a resource using a PUT, all properties are updated, overwriting all existing property values. Any properties left blank or not included in the PUT will be overwritten with a null value.

PUT: https://api.constantcontact.com/v2/contacts/{contactId}

Test API

name

type

default

description

action_by

query

ACTION_BY_OWNER

Identifies who originated the action of adding the contact:

  • ACTION_BY_OWNER - contact was added by the Constant Contact account owner or user
  • ACTION_BY_VISITOR - contact was added by the contact

api_key

query

REQUIRED; The API key for the application

contactId

path

Specifies the contact being updated

Example JSON Request Body TOP

  1. {
  2. "addresses": [
  3. {
  4. "line1": "47 Shawmut Ave.",
  5. "line2": "Suite 404",
  6. "city": "Boston",
  7. "address_type": "BUSINESS",
  8. "state_code": "MA",
  9. "country_code": "us",
  10. "postal_code": "02158"
  11. }
  12. ],
  13. "lists": [
  14. {
  15. "id": "1"
  16. }
  17. ],
  18. "email_addresses": [
  19. {
  20. "email_address": "username1@example.com"
  21. }
  22. ],
  23. "prefix_name": "Mr.",
  24. "first_name": "Ronald",
  25. "last_name": "Martone",
  26. "job_title": "Systems Analyst 3",
  27. "company_name": "System Optimizations",
  28. "home_phone": "555-555-5555",
  29. "work_phone": "555-555-5555",
  30. "cell_phone": "555-555-5555",
  31. "fax": "555-555-5555",
  32. "custom_fields": [
  33. {
  34. "name": "CustomField1",
  35. "value": "Has control of $25 million budget"
  36. }
  37. ]
  38. }

Response Codes TOP

code

description

200

Contact was successfully updated

400

Either JSON was malformed or there was a data validation error

401

Authentication failure

404

Contact not found for ID

406

Unsupported Accept Header value, must be application/json

415

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

500

Internal server error occurred

Structure TOP

property

type (max length)

description

Example Response TOP

  1. {
  2. "id": "1237272667",
  3. "status": "ACTIVE",
  4. "fax": "555-555-5555",
  5. "addresses": [
  6. {
  7. "id": "613f6340-8a7f-11e2-ba64-00163e68e976",
  8. "line1": "47 Shawmut Ave.",
  9. "line2": "Suite 404",
  10. "city": "Boston",
  11. "address_type": "BUSINESS",
  12. "state":"Massachusetts",
  13. "state_code": "MA",
  14. "country_code": "us",
  15. "postal_code": "02158",
  16. "sub_postal_code": ""
  17. }
  18. ],
  19. "notes": [],
  20. "confirmed": false,
  21. "lists": [
  22. {
  23. "id": "1",
  24. "status": "ACTIVE"
  25. }
  26. ],
  27. "source": "API",
  28. "email_addresses": [
  29. {
  30. "id": "61348dd0-8a7f-11e2-ba64-00163e68e976",
  31. "status": "ACTIVE",
  32. "confirm_status": "NO_CONFIRMATION_REQUIRED",
  33. "opt_in_source": "ACTION_BY_OWNER",
  34. "opt_in_date": "2013-03-11T19:10:47.000Z",
  35. "email_address": "username1@example.com"
  36. }
  37. ],
  38. "prefix_name": "Mr.",
  39. "first_name": "Ronald",
  40. "last_name": "Martone",
  41. "job_title": "Systems Analyst 3",
  42. "company_name": "System Optimizations",
  43. "home_phone": "",
  44. "work_phone": "555-555-5555",
  45. "cell_phone": "555-555-5555",
  46. "custom_fields": [
  47. {
  48. "name": "CustomField1",
  49. "value": "Has control of $25 million budget"
  50. }
  51. ],
  52. "created_date": "2013-03-11T19:10:47.000Z",
  53. "modified_date": "2013-03-11T19:43:47.000Z",
  54. "source_details": "Server Flow App"
  55. }
  56.