Hi, We are using v2 API and we need to get all the OPTOUT contacts. The API when used with the filter status=OPTOUT, returns the Optedout contacts, but there are contacts which have been even soft deleted (removed which can be identified by looking at email_addresses status as REMOVED as shown in the below example). We don't want these contacts to be seen in the API response. Is there any way to get these filtered out using the API request parameters? A sample response would be something like this: { " id " : " 55555 " , " status " : " OPTOUT " , " fax " : "" , " addresses " : [], " notes " : [], " confirmed " : false , " lists " : [], " source " : "" , " email_addresses " : [ { " id " : "1-2-3-4 " , " status " : " REMOVED " , " confirm_status " : " NO_CONFIRMATION_REQUIRED " , " opt_out_date " : " 2018-12-27T22:20:47.000Z " , " email_address " : "dummy @sample.com " } ], " prefix_name " : "" , " first_name " : " DUMMY CONTACT " , " middle_name " : "" , " last_name " : "" , " job_title " : "" , " company_name " : "" , " home_phone " : "" , " work_phone " : "" , " cell_phone " : "" , " custom_fields " : [], " created_date " : " 2018-06-18T20:04:54.000Z " , " modified_date " : " 2018-12-28T17:17:23.000Z " , " source_details " : "" }, Thanks
... View more