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": "trade_password"
}
Response :
| Field | Type | Description |
|---|---|---|
| data | string | data |
| cvc | string | cvc |
| expiry | string | expiry |
Status:200 ok
{
"cvc": "777",
"expiry": "02/02"
}