Get CVV2

This API retrieves the details of the specified account and card including the CVV2

Request Message description

Field #Field nameData typeMax lengthRequiredDescription
1issuerNrInt3falseThe ID of the Issuer e.g 2
2accountIdstring10 to 28trueThe account number linked to the card
3panstring16 or 19trueThe primary account number of the card
4cardSequencenrstring3trueThe sequence number of the card
5expiryDatestring4trueThe expiry date of the card
POST /card-management/api/v1/card/account-card/details
Authorization = Bearer Token

Sample Request

{
	"issuerNr":2,
	"pan": "5612330000000029825", 
	"expiryDate": "5003",
	"cardSequenceNr":"001",
	"accountId":"5612330000000029825"
}

Response Message  field description


Field #FieldDescription
1accountIdThe account number linked to the card
2panThe primary account number of the card
3sequenceNrThe sequence number of the card
4expiryDateThe expiry date of the card
5
6
7
8
9

Sample Response (success)

{
    "code": "00",
    "description": "Successful",
    "detailedAccountCustomerCards": [
        {
            "accountId": "0002489624",
            "customerId": "20230122193705443677630",
            "pan": "5060990000000047630",
            "firstName": "DAMILOLA",
            "lastName": "ODUNBAKU",
            "nameOnCard": "DAMILOLA ODUNBAKU",
            "mobileNr": "",
            "seqNr": "001",
            "expiryDate": "5004"
        },
        {
            "accountId": "0002489624",
            "customerId": "20230122193705443677630",
            "pan": "5060990000000047648",
            "firstName": "DAMILOLA",
            "lastName": "ODUNBAKU",
            "nameOnCard": "DAMILOLA ODUNBAKU",
            "mobileNr": "",
            "seqNr": "001",
            "expiryDate": "5004"
        },
        {
            "accountId": "0002489624",
            "customerId": "20230122193705443677630",
            "pan": "5060990000000047655",
            "firstName": "DAMILOLA",
            "lastName": "ODUNBAKU",
            "nameOnCard": "DAMILOLA ODUNBAKU",
            "mobileNr": "",
            "seqNr": "001",
            "expiryDate": "5004"
        },
        {
            "accountId": "0002489624",
            "customerId": "20230122193705443677630",
            "pan": "5060990000000047663",
            "firstName": "DAMILOLA",
            "lastName": "ODUNBAKU",
            "nameOnCard": "DAMILOLA ODUNBAKU",
            "mobileNr": "",
            "seqNr": "001",
            "expiryDate": "5004"
        }
    ]
}

Sample Response (failure)

{
    "code": "10404",
    "description": "No customer and no card records found",
    "correlationId": "6a78c7e6aed24f689f5880ca24904c26"
}

Did this page help you?