Attempting to use the "Contacts" API method from the V2 API, and looking to add some postal information with the incoming records. Here is an example post with sensitive information redacted: { "lists": [ { "id": "1376827320" } ], "email_addresses": [ { "email_address": "xxxxxxx@hotmail.com" } ], "addresses": [ { "address_type": "PERSONAL" }, { "city": "Test" }, { "postal_code": "12345" }, { "state": "OH" }, { "line1": "820 W Test Lake Rd" } ], "first_name": "John", "last_name": "Test" } And this is what I am getting in the HTTP Response, as part of a HTTP 400 error: [ { "error_key": "json.max.items.violation", "error_message": "#/addresses: 5 items were contained, but the maximum number of items allowed is 2." } ] If I am reading this correctly, the HTTP response is claiming we can't add more than two parameters as part of the address property. And since the address_type is required, it really means we can only add one. I'm assuming I must be missing something because this doesn't seem correct. This is for a brand new record, the email does not exist at all in Constant Contact. Any ideas?
... View more