I have SOAP installed on my server but I'm not sure how to send or receive requests. If the following is my request, how do I send it to the API and how do I accept the response? Is there a function I need to pass the following request to?
<soapenv:Envelope>
<soapenv:Header/>
<soapenv:Body>
<api:search>
<developerKey></developerKey>
<api:websiteId>12345</api:websiteId>
<api:advertiserIds>joined</api:advertiserIds>
<api:keywords>basketball shoes</api:keywords>
<api:maxResults>100</api:maxResults>
</api:search>
</soapenv:Body>
</soapenv:Envelope>