Hello, According to https://v3.developer.constantcontact.com/api_guide/contacts_delete.html it should be possible to restore deleted contact by making a PUT request to https://api.cc.email/v3/contacts/{contact_id}, but unfortunately it returns error for me. See: → curl -H "Authorization: Bearer $TOKEN" 'https://api.cc.email/v3/contacts/802a35c0-0e19-11e6-b051-d4ae52712b64' -X PUT -H "Content-Type: application/json" -d '{"email_address":{"address":"contact@example.com"},"update_source":"Contact"}' | jq
[
{
"error_key": "contacts.api.bad_request",
"error_message": "Validation failed: State is invalid"
}
] Error says that "State is invalid". What state? Am I doing something wrong? Or this is some kind of API bug?
... View more