Get CVV2
This API retrieves the details of the specified account and card including the CVV2
Request Message description
| Field # | Field name | Data type | Max length | Required | Description |
|---|---|---|---|---|---|
| 1 | issuerNr | Int | 3 | false | The ID of the Issuer e.g 2 |
| 2 | accountId | string | 10 to 28 | true | The account number linked to the card |
| 3 | pan | string | 16 or 19 | true | The primary account number of the card |
| 4 | cardSequencenr | string | 3 | true | The sequence number of the card |
| 5 | expiryDate | string | 4 | true | The 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 # | Field | Description |
|---|---|---|
| 1 | accountId | The account number linked to the card |
| 2 | pan | The primary account number of the card |
| 3 | sequenceNr | The sequence number of the card |
| 4 | expiryDate | The 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"
}Updated about 7 hours ago
Did this page help you?
