GDPR Soap calls
Hello, I need to delete members using soap calls. The GDPR documentation that I found is not very helpful : Campaign Classic - General Data Protection Regulation .
So I made a soap call like this :
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:nms:gdprRequest">
<soapenv:Header/>
<soapenv:Body>
<urn:CreateRequestByName>
<urn:namespaceName><![CDATA[privacyRequest5]]></urn:namespaceName>
<urn:reconciliationValue><![CDATA[test@test.com]]></urn:reconciliationValue>
<urn:type><![CDATA[access]]></urn:type>
<urn:confirmDeletePending><![CDATA[true]]></urn:confirmDeletePending>
<urn:id><![CDATA[3]]></urn:id>
</urn:CreateRequestByName>
</soapenv:Body>
</soapenv:Envelope>
I got this error : XTK-170019 Access denied. What I am doing wrong? As a remark my Soap action is nms:gdprRequest#CreateRequestByName
Thank you in advance!