I successfully update contact fields (e.g., fistName, emailAddressIsOptedOut, emailAddressIsInvalid) via API.
The same code does not update the object field "emailAddressData". The API returns the 200 code (Ok). But the value of the field "emailAddressData" remains unchanged.
The same code does not update the object field "emailAddressData". The API returns the 200 code (Ok). But the value of the field "emailAddressData" remains unchanged.
Code:
emailAddressData = [ { "emailAddress": "name@domain1.com", "lower": "name@domain1.com", "primary": true, "optOut": false, "invalid": false }, { "emailAddress": "name@domain2.com", "lower": "name@domain2.com", "primary": false, "optOut": true, "invalid": true } ]
Comment