Hi, I'm trying to figure out how to delete obsolete contact street addresses through the API. Example: POST /contacts John Smith with street addresses 123 Linden Ave and 456 Cherry Blossom Ln. A year later, John no longer needs to receive mail at 456 Cherry Blossom Ln. We need to remove that address from his street addresses. The documentation for PUT /contacts/{contact_id} says: Add or change any of the subresources by including them in the PUT request payload. Omitted subresources are not overwritten with null. How can we get rid of the old address?
... View more