This interface can query the card PIN, which is the password used when withdrawing money from an ATM or swiping a card at a POS.
Request
Body Params application/json
{
"cardId": "CIDV250421108623493"
}
Request samples
curl --location --request POST 'https://api-test.tevaupay.com/openapi/query/card/getCardPin' \
--header 'x-nexus-api-key;' \
--header 'versions;' \
--header 'appId;' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'sign;' \
--header 'Content-Type: application/json' \
--data-raw '{
"cardId": "CIDV250421108623493"
}'
Responses
application/json {
"code": 0,
"msg": "SUCCESS",
"data": {
"cardPin": "5107"
},
"ok": true
}
Modified at 2025-07-29 03:19:40