2.1.46 Pin Query
Path:/openapi/card/pin/query
Method:POST
Content-Type:application/json
Response Content-Type:application/json
Description:
Only the cards listed below need to call this interface:
| card_type_id |
|---|
| 71000003 |
| 49300003 |
| 49300004 |
| 49300008 |
| 49300006 |
Example Request:
{
"card_id": "00003454323400000028888"
}
Request Parameter:
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| card_id | string | true | Card id |
API Response:
| Parameter Name | Type | Description |
|---|---|---|
| code | string | Error code |
| msg | string | Error message |
| data | Object | Data response |
| card_id | string | Card ID: Id of the card. |
| card_pin | string | Pin |
Example Response:
{
"code": "00000",
"msg": "ok",
"data": {
"cardId": "00003454323400000028888",
"cardPin": "7645"
}
}