Get Customer Cards
This retrieves the active issuance card of a customer using account number and/or customer ID
Overview
To get customer cards make a post request by passing Token, AccountNo and IncludeInactiveCards in the request body to the get customer cards endpoint.
Expected Request
{
"Token":"1xxxxxxxxxxxxxxxxxxxxxxxxxxx7",
"AccountNo":"1100216650",
"IncludeInactiveCards":true
}
Expected Response
If the request is successful, it returns a status code of 200 with a response body.
{
"isSuccessful": true,
"ResponseDescription": "Card record(s) retrieved",
"Cards": {[
"AccountNumber":"1100216650",
"CardPAN" : "506124*********5019",
"LinkedDate" :" 2020-10-28T00:00:00",
"ExpiryDate" : "2023-10-01T00:00:00",
"SerialNo" : "5225454",
"NameOnCard" : "okponyia chioma",
"CardType":null,
"Status": "Pending"
]}
}
You can check out API reference to Get Customer Cards
Updated about 1 year ago