StopCard
Stop a card with one of the following allowed (integer) values for stopReasonID:
- Card stopped as it has been lost
- Card stopped as it has been stolen
- Card stopped pending outcome of query
- Card stopped to consolidate onto single card
- Card stopped as it is no longer active
- Card stopped as allowable PIN tries have been exceeded
- Suspected fraud
- Emergency card replacement
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
Card number or Tracking number or Sequence number of the card
integer, required
Stop Reason ID associated with the reason for stopping a card:
Card stopped as it has been lost Card stopped as it has been stolen Card stopped pending outcome of query Card stopped to consolidate onto single card Card stopped as it is no longer active Card stopped as allowable PIN tries have been exceeded Suspected fraud Emergency card replacementstring, 1-255 characters, required
Transaction ID number generated by the calling client
date, required
Transaction date generated by the calling client
string, required
HMAC-SHA256 hashed signature of the concatenated method name with all argument values using the terminal password as private key
<?xml version="1.0"?> <methodCall> <methodName>StopCard</methodName> <params> <param> <value> <string>ABC1234567</string> </value> </param> <param> <value> <string>P12345</string> </value> </param> <param> <value> <string>987654321</string> </value> </param> <param> <value> <int>1</int> </value> </param> <param> <value> <string>T987654321</string> </value> </param> <param> <value> <dateTime.iso8601>2023-11-08T12:44:44</dateTime.iso8601> </value> </param> <param> <value> <string>3b7c4444e1c4444d8e134a4c0c2c2d444e3d4444</string> </value> </param> </params> </methodCall>
Response
STATUS200 OK
Schema
string
Echo
string
Echo
string
Number of the card found using the cardIdentifier
string
Echo
string
Echo
string
Transaction ID generated by Paymentology
integer
Status code indicating transaction result
string
Text indicating the transaction result
<methodResponse> <params> <param> <value> <struct> <member> <name>terminalID</name> <value> <string>ABC1234567</string> </value> </member> <member> <name>profileNumber</name> <value> <string>P12345</string> </value> </member> <member> <name>cardNumber</name> <value> <string>987654321</string> </value> </member> <member> <name>stopReasonID</name> <value> <int>1</int> </value> </member> <member> <name>clientTransactionID</name> <value> <string>T987654321</string> </value> </member> <member> <name>serverTransactionID</name> <value> <string>ST123456789</string> </value> </member> <member> <name>resultCode</name> <value> <int>200</int> </value> </member> <member> <name>resultText</name> <value> <string>Card stopped successfully</string> </value> </member> </struct> </value> </param> </params> </methodResponse>
Was this page helpful?