Contacts
Update Contact
Update selected contact. Omitted contact's fields will not be changed. Required Access Level: ModifyContacts
put/contacts/{email}
Path parameters
emailstring string required
string
Example:mail@example.com
Proper email address.
Request body
Example request
{
"FirstName": "Fred",
"LastName": "Flintstone",
"CustomFields": {
"city": "New York",
"age": "34"
}
}Response
OK
Example response
{
"Email": "mail@example.com",
"FirstName": "Fred",
"LastName": "Flintstone",
"CustomFields": {
"city": "New York",
"age": "34"
},
"Consent": {
"ConsentIP": "192.168.0.1",
"ConsentDate": "1/1/2015 0:00:00 AM"
},
"DateAdded": "2001-01-01T12:00:00",
"DateUpdated": "2001-01-01T12:00:00",
"StatusChangeDate": "2001-01-01T12:00:00",
"Activity": {
"LastOpened": "2014-01-01"
}
}