Query Available Card BINs

Query Available Card BINs

Request URI

POST /issuing/card/query-available-card-bins

Request Body

Refer to : common

Biz_data :

Name
Type
Description

sub_partner_id*

string

Sub Partner ID

Request Example

{
    "app_id": "00000000000000000",
    "partner_id": "00000000000000000",
    "sub_partner_id": "",
    "request_id": "bb5BcC3A-E11F-a2dA-ee99-FeE1d9cd",
    "timestamp": "2025-04-07 13:52:38",
    "format": "JSON",
    "version": "2.0",
    "sign_type": "RSA",
    "biz_data": {
        "sub_partner_id": "00000000000000000"
    },
    "random_key": "<generated_key>"
}
// The biz_data in this example needs to be encrypted!

Response

Name
Type
Description

data

List<string>

Card Bins

{
    "code": "10000",
    "msg": "Success",
    "total": 1,
    "random_key": "<random key used for decryption>",
    "sign_type": "RSA",
    "app_id": "00000000000000000",
    "data": ["658704","658705"]
}
// The data in this example has already been decrypted.

Last updated

Was this helpful?