Get Customer Cards

This retrieves the active issuance card of a customer using account number and/or customer ID.

To get customer cards make a post request by passing Token, AccountNo, and CustomerID in the request body to the get customer cards endpoint.

// Live URL
http://api.mybankone.com/thirdpartyapiservice/apiservice/
Cards/RetrieveCustomerCards

POST https://staging.mybankone.com/thirdpartyapiservice/apiservice/Cards/ RetrieveCustomerCards

Request Body

Name
Type
Description

Token *

String

Authentication Key for the request

AccountNo*

String

Requesting customer’s account number

CustomerID*

String

Card Request Type as retrieved from RetrieveInstitutionConfig Card Request Type List

{
 "isSuccessful": true,
 "ResponseDescription": "Card record(s) retrieved",
 "Cards": {[
    "AccountNumber":"0010011010000156",
    "CardPAN" : "506124*********5019",
    "LinkedDate" :" 2020-10-28T00:00:00",
    "ExpiryDate" : "2023-10-01T00:00:00",
    "SerialNo" : "5225454",
    "NameOnCard" : "okponyia chioma",
    "CardType":null,
    "Status": "Pending"
    
 ]}
}

Last updated