This function allows you to deny a specific transaction for a customer. To use this function, you must make a SOAP call with the following parameters:
- transid - The transaction ID of the sale
- customerid - The customer ID of the sale
<?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tns="urn:offeritapiadmin_wsdl"><SOAP-ENV:Body><tns:deny_transaction xmlns:tns="urn:offeritapiadmin_wsdl">
<transid xsi:type="xsd:int">265</transid>
<customerid xsi:type="xsd:int">130</customerid>
</tns:deny_transaction></SOAP-ENV:Body></SOAP-ENV:Envelope>
You will get a response similar to the following:
<?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body><ns1:deny_transactionResponse xmlns:ns1="urn:offeritapiadmin_wsdl">
<return xsi:type="xsd:string">ERROR - Unable to Deny Transaction Type</return>
</ns1:deny_transactionResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
NuSOAP Example
This example continues from the main article NuSOAP Example):
$values = Array(
'transid' => 265,
'customerid' => 130
);
$result = $client->call('approve_transaction', Array(), 'offeritapiadmin_wsdl');
Sample Output
on success:
SUCCESS
on error:
ERROR: error message