Get card CVC

Endpoint:

Method: POST
Type: RAW
URL: {{API_BASE_URL}}/cards/cvc

Request Parameter:

Parameter Required Type Description
card_number Y string card_number
trade_password Y string trade_password
{
    "card_number": "5329000000000000",
    "trade_password": "your_trade_password"
}

Response :

Field Type Description
data object data
cvc string cvc
expiry string expiry
Status: 200
Status: 400 (Bad Request)
{
    "data": {
        "cvc": "123",
        "expiry": "12/25"
    }
}