LoadCardDeductProfile
Load a card with the requested amount and deduct the amount off the profile.
Request
Path parameters
string, 10 characters, required
The Paymentology issued terminal ID of the terminal requesting the transaction
string, 1-20 characters, required
The profile to which the card belongs, funds will be loaded to this profile
string, 1-20 characters, required
The card number, tracking number or sequence number of the card to deduct
string, required
The requested amount to be loaded on the card and deducted from the profile, in cents
string, 1-255 characters, required
Transaction ID number generated by the calling client
date, required
Transaction date generated by the calling client
string, required
HMAC-SHA1 hashed signature of the concatenated method name with all argument values using the terminal password as private key
<?xml version="1.0"?> <methodCall> <methodName>LoadCardDeductProfile</methodName> <params> <param> <value> <string>ABC1234567</string> </value> </param> <param> <value> <string>12345</string> </value> </param> <param> <value> <string>987654321</string> </value> </param> <param> <value> <string>5000</string> </value> </param> <param> <value> <string>ABCDE12345</string> </value> </param> <param> <value> <dateTime.iso8601>2023-11-08T12:34:56</dateTime.iso8601> </value> </param> <param> <value> <string>3b4c4444e1c4444d8e444a4c0c2c2d444e4d4444</string> </value> </param> </params> </methodCall>
Response
STATUS200 OK
Schema
string
Echo of incoming value
string
Echo of incoming value
string
Echo of incoming value
integer
Echo of incoming value
string
Echo of incoming value
date
Transaction ID generated by Paymentology
integer
Balance amount in cents
string
Authorisation number for transaction
string
The expiry date of the card
integer
Status code indicating transaction result
string
Text indicating transaction result
<methodResponse> <params> <param> <value> <struct> <member> <name>terminalID</name> <value> <string>ABC1234567</string> </value> </member> <member> <name>profileNumber</name> <value> <string>12345</string> </value> </member> <member> <name>cardNumber</name> <value> <string>987654321</string> </value> </member> <member> <name>requestAmount</name> <value> <int>5000</int> </value> </member> <member> <name>clientTransactionID</name> <value> <string>ABCDE12345</string> </value> </member> <member> <name>serverTransactionID</name> <value> <string>2023-11-08T12:34:56Z</string> </value> </member> <member> <name>balanceAmount</name> <value> <int>45000</int> </value> </member> <member> <name>authNumber</name> <value> <string>123456</string> </value> </member> <member> <name>expiryDate</name> <value> <string>2023-12-31</string> </value> </member> <member> <name>resultCode</name> <value> <int>0</int> </value> </member> <member> <name>resultText</name> <value> <string>Transaction successful</string> </value> </member> </struct> </value> </param> </params> </methodResponse>
Was this page helpful?