Dear Community,
is there a way to find out which email address has selected the "opt out" option via API.
I know from CoreContent GUI there is such a report avail, but I cannot find an api call to receive this info.
Thanks for your support !
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
AddressBlockRetrieve API can be used to email Opt-out reports similar to MyPortal
Please find the below documentation for the same
https://apiforums.easylink.com/emapidocs/26/AddressBlockRetrieve/AddressBlockRetrieveRequest.html
Please find the sample request.
<?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header> <ns:Request xmlns:ns="http://ws.easylink.com/RequestResponse/2011/01" xmlns:mustUnderstand="http://schemas.xmlsoap.org/soap/envelope/" mustUnderstand:mustUnderstand="0"> <ns:ReceiverKey>http://tf-vdevxoaapp-d001.xpedite.com/soap/sync</ns:ReceiverKey> <ns:Authentication> <ns:XDDSAuth> <ns:RequesterID>username</ns:RequesterID> <ns:Password>password</ns:Password> </ns:XDDSAuth> </ns:Authentication> <ns:InputChannel>11800</ns:InputChannel> </ns:Request> </soapenv:Header> <soapenv:Body> <ns:AddressBlockRetrieveRequest xmlns:ns="http://ws.easylink.com/AddressBlockRetrieve/2011/01"> <ns:BlockStore>XDDS</ns:BlockStore> <ns:BlockLevel>user</ns:BlockLevel> <ns:NumToRetrieve>10001</ns:NumToRetrieve> <ns:DateRange> <ns:StartDate>2025-06-07T14:30:59.726-04:00</ns:StartDate> <ns:EndDate>2025-06-09T14:29:59.726-04:00</ns:EndDate> </ns:DateRange> <ns:AddressTypeGroup> <ns:AddressTypeFilter>internet</ns:AddressTypeFilter> </ns:AddressTypeGroup> </ns:AddressBlockRetrieveRequest> </soapenv:Body> </soapenv:Envelope>