Hello AidanO03,
Thank you for reaching out to Constant Contact API Developer Support. My team is here to assist outside software developers with questions about building into Constant Contact's API.
When Updating a contact, you need to append the new information to the old information and send all of it back in the request, because when you update a contact 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.
To make a full GET /contacts call, you can just use the email address, rather than the contact ID, and then include all available values for the "include" query parameter in the "GET Contacts Collection" section of the API Reference page: https://v3.developer.constantcontact.com/api_reference/index.html#!/Contacts/getContacts
The request should look something like this:
GET
v3/contacts?status=all&email=xyz%40example.com&include=custom_fields%2Clist_memberships%2Cphone_numbers%2Cstreet_addresses%2Ctaggings%2Cnotes%2Csms_channel
Please have a look and let us know if you have any other questions!
You can also reach our team directly/securely via email at webservices@constantcontact.com
... View more