The Return operation of the Web Services API is used to return the result of a Sale, PreAuth, ForceTicket or Credit transaction.
The steps below will show you how to use the Return simulator to build a transaction. Our examples here uses a simple cURL request, but the same steps apply to any coding language.
In a nutshell: your code must first assemble a XML document with the fields for a Return transaction, then wrap the XML into the body of a SOAP request.
The XML body of a Return transaction requires an OrderId and a Payment block. These are used to identify the transaction which you want to return.
Remember you can trigger different responses from the simulator by varying the values you send in. By default the simulator will use ChargeTotal as the trigger value.
Below is an example SOAP request containing the minimum XML fields needed for a Return transaction.
<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:v1="http://ipg-online.com/ipgapi/schemas/ipgapi" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Body>
<ipgapi:IPGApiOrderRequest xmlns:v1="http://ipg-online.com/ipgapi/schemas/v1" xmlns:ipgapi="http://ipg-online.com/ipgapi/schemas/ipgapi">
<v1:Transaction>
<v1:CreditCardTxType>
<v1:Type>return</v1:Type>
</v1:CreditCardTxType>
<v1:Payment>
<v1:ChargeTotal>19.00</v1:ChargeTotal>
<v1:Currency>978</v1:Currency>
</v1:Payment>
<v1:TransactionDetails>
<v1:OrderId>A-e56074e2-a526-432e-ac5e-bd40e7471f9c</v1:OrderId>
</v1:TransactionDetails>
</v1:Transaction>
</ipgapi:IPGApiOrderRequest>
</env:Body>
</env:Envelope>
For the purposes of making a manual cURL transaction, paste the above example into a text editor and save it locally as an XML file, say, example.xml
.
Make sure you include all xmlns attributes (aka XML namespaces) mentioned in this guide. Without these the XML may not be parsed correctly.
Next, your code needs to send the assembled SOAP request to the Return simulator. The URL to POST to can be found under the "Integration" tab of the simulator - make sure to copy&paste this URL from your simulator as it contains your unique API_KEY.
The example show below shows how to make a Return transaction using cURL. The example.xml
contains the constructed SOAP request.
curl -X POST -d @example.xml \
https://api.testingpays.com/API_KEY/authipay/v1/ipgapi/services
API_KEY is placeholder for your actual API key that you will find on your simulator pages in the Developer Playground.
The simulator will first validate your request. If it detects any issues, you'll see a verbose response indicating what is wrong with the request.
If the simulator detects no issues, then it will simulate a Return response that contains information about the transaction such as: the result from the gateway, the bank authorisation result, DCC information, etc.
The example show below shows the response to a Return transaction sent manually by cURL command to the simulator.
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<ipgapi:IPGApiOrderResponse xmlns:ipgapi="http://ipg-online.com/ipgapi/schemas/ipgapi" xmlns:a1="http://ipg-online.com/ipgapi/schemas/a1" xmlns:v1="http://ipg-online.com/ipgapi/schemas/v1">
<ipgapi:ApprovalCode>Y:701855:A3876712893:PPXP:3169</ipgapi:ApprovalCode>
<ipgapi:AVSResponse>PPX</ipgapi:AVSResponse>
<ipgapi:Brand>VISA</ipgapi:Brand>
<ipgapi:CommercialServiceProvider>AIBMS</ipgapi:CommercialServiceProvider>
<ipgapi:OrderId>A-1rcaectwzYQr8Hd764BgFl7HhmuHjCnl2zpQSQ==</ipgapi:OrderId>
<ipgapi:IpgTransactionId>3876712893</ipgapi:IpgTransactionId>
<ipgapi:PaymentType>CREDITCARD</ipgapi:PaymentType>
<ipgapi:ProcessorApprovalCode>701855</ipgapi:ProcessorApprovalCode>
<ipgapi:ProcessorReferenceNumber>701855</ipgapi:ProcessorReferenceNumber>
<ipgapi:ProcessorResponseCode>00</ipgapi:ProcessorResponseCode>
<ipgapi:ProcessorResponseMessage>AUTH CODE:701855</ipgapi:ProcessorResponseMessage>
<ipgapi:ReferencedTDate>-2062454204</ipgapi:ReferencedTDate>
<ipgapi:TDate>1537545796</ipgapi:TDate>
<ipgapi:TDateFormatted>2018.09.21 16:03:16</ipgapi:TDateFormatted>
<ipgapi:TerminalID>93487987</ipgapi:TerminalID>
<ipgapi:TransactionResult>APPROVED</ipgapi:TransactionResult>
<ipgapi:TransactionTime>1537545796</ipgapi:TransactionTime>
</ipgapi:IPGApiOrderResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
The important parameter to look for in the response is the ApprovalCode.
Each transaction will get its own OrderId. Your code should store this in persistent storage. It's an important reference if any future dispute or chargeback arises. You could also store the IpgTransactionId as well; this will help you in any support requests to Authipay.