Check if Card is Registered

GetCard

To ensure the end-users card has been registered, use this method before you make a repeat transaction. This method will enable you to check if the card was successfully registered.

Input

KeyDescriptionValue
cardIdThis is the cardId that is associated with the transactioninteger
109788

Output

ItemDescriptionValue
IDThis is the cardId that is associated with the end-user109788
REGISTEREDBoolean value1
1 (true)
0 (false)
<EXTRA>
<EXP>0122</EXP>The card expiration date122
<TYP>CB</TYP>Card typeCB
Example XML:
<GetCardResult xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="Service_mb_xml">
<CARD>
<CARDID>109788</CARDID>
<REGISTERED>1</REGISTERED>
<EXTRA>
<EXP>0122</EXP>
<TYP>CB</TYP>
</EXTRA>
</CARD>
</GetCardResult>
Example JSON:
{
    "card":{
        "id":7,
        "expiration":"0620",
        "type":"CB",
        "isRegistered":false
    }
}