The updating portion makes sense but how would you be able to Search a "sort-deleted" user by email? I currently have a system where the user searches by email address so they can update lists and contact information. A soft-deleted user comes back from the API as a 200 but with empty contact body. The following was via 'contacts' GET passing in the `email_address` parameter in the v3 API. [body] => {
"contacts" : []
}
[response] => Array
(
[code] => 200
[message] => OK
) Is there a different method to retrieve a "soft-deleted" contact via the API so that they can be updated via PUT?
... View more