CheckLoad
Provides a method to check if the specified amount was loaded on a card.
Request
Path parameters
string, 10 characters, required
The Paymentology issued terminal ID of the terminal requesting the transaction.
string, 1-20 characters, required
Profile number linked with this card.
string, 1-20 characters, required
The card number, sequence number or tracking number of the specified card.
integer, required
The requested amount to have been loaded to the card and decucted from the profile, in cents.
string, 1-255 characters, required
Transaction ID number refering to the load to check
date, required
Transaction date refering to the load to check.
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" encoding="UTF-8"?> <methodCall> <methodName>CheckLoad</methodName> <params> <param> <value> <string>1234123412</string> </value> </param> <param> <value> <string>3444495478</string> </value> </param> <param> <value> <string>5333123</string> </value> </param> <param> <value> <i4>145000</i4> </value> </param> <param> <value> <string>3658-2589-1234-56782</string> </value> </param> <param> <value> <dateTime.iso8601>20230228T11:38:08</dateTime.iso8601> </value> </param> <param> <value> <string>B322EB366737A1BE95ABE1AF2703590070FD43B7</string> </value> </param> </params> </methodCall>
Response
STATUS200 OK
Schema
string
Echo of incoming value.
string
Echo of incoming value.
string
Number of the card found using the cardIdentifier.
string
Echo of incoming value.
integer
Status code indicating transaction result.
string
Text indicating transaction result.
<?xml version="1.0" encoding="UTF-8"?> <methodResponse> <params> <param> <value> <struct> <member> <name>clientTransactionID</name> <value> <string>3658-2589-1458-36582</string> </value> </member> <member> <name>resultCode</name> <value> <int>-11</int> </value> </member> <member> <name>terminalID</name> <value> <string>1234123412</string> </value> </member> <member> <name>profileNumber</name> <value> <string>3444495478</string> </value> </member> <member> <name>cardNumber</name> <value> <string>5456745676789563</string> </value> </member> <member> <name>resultText</name> <value> <string>Transaction could not be found</string> </value> </member> </struct> </value> </param> </params> </methodResponse>