Get Sensitive Details of a Card
GET/api/v1/cards/card/detail/sensitive
Retrieves sensitive information for a specified card. This includes the card number, CVV, expiry date, and cardholder's name. IMPORTANT: The information obtained from this endpoint is highly confidential. Adequate security measures must be in place to protect this data. Unauthorized access or mishandling of this information can lead to significant financial losses.
Request
Query Parameters
card_id Card Id
The unique identifier of the card for which sensitive details are being requested.
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
card_number Card Numberrequired
The full number of the card.
cvv Cvvrequired
The card verification value/code.
expiry_month Expiry Monthrequired
The month when the card expires.
expiry_year Expiry Yearrequired
The year when the card expires.
name_on_card Name On Cardrequired
The name of the cardholder.
{
"card_number": "string",
"cvv": "string",
"expiry_month": 0,
"expiry_year": 0,
"name_on_card": "string"
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- MOD1
- MOD2
- ]
- ]
detail object[]
loc object[]required
anyOf
string
integer
msg Messagerequired
type Error Typerequired
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...