Hello All,
I have used some SOAP bits with PHP before but not sure on this one:
<User>
<APIKey>string</APIKey>
<Details>
<Title>string</Title>
<FirstName>string</FirstName>
<LastName>string</LastName>
</Details>
</User>
Now I think... I should be passing 2 variables, One as the API Key, another as the array of details:
require_once 'SOAP/Client.php';
$api_key="ABC";
$details={"Title","First Name","Last Name"};
$wsdl_url = 'http://testapi.org/api.asmx?wsdl';
$WSDL = new SOAP_WSDL($wsdl_url);
$client = $WSDL->getProxy();
$response = $client->User($lp_api_key, $details);
Is this correct?