Difference between revisions of "Offerit API Approve Transaction"
From Offerit
OfferitJames (talk | contribs) |
OfferitRobC (talk | contribs) |
||
Line 53: | Line 53: | ||
</ns1:approve_transactionResponse></SOAP-ENV:Body></SOAP-ENV:Envelope> | </ns1:approve_transactionResponse></SOAP-ENV:Body></SOAP-ENV:Envelope> | ||
</pre> | </pre> | ||
− | |||
− |
Revision as of 17:51, 23 December 2011
This function allows you to approve 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
NuSOAP Example
This example continues from the main article NuSOAP Example:
$values = Array( 'transid' => 265, 'customerid' => 130 ); $result = $client->call('approve_transaction', $values, 'offeritapiadmin_wsdl');
Sample Output
on success: SUCCESS on error: ERROR: error message
Server Request/Response
Request:
<?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:approve_transaction xmlns:tns="urn:offeritapiadmin_wsdl"> <transid xsi:type="xsd:int">265</transid> <customerid xsi:type="xsd:int">130</customerid> </tns:approve_transaction></SOAP-ENV:Body></SOAP-ENV:Envelope>
Response:
<?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:approve_transactionResponse xmlns:ns1="urn:offeritapiadmin_wsdl"> <return xsi:type="xsd:string">SUCCESS</return> </ns1:approve_transactionResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>