Query Card Balance

Query card balance

bcRequest URL

POST https://card-api-sandbox.pagsmile.com/issuing/card/query-card-balance

Request Header

NameTypeDescription

Content-Type*

string

application/json; chartset=UTF-8

Request Body

Refer to : common

Biz_data :

NameTypeDescription

card_token*

string

Card token

Response

{
    "code": "10000",
    "msg": "Success",
    "data": [
        {
            "account_name": "Example company",
            "account_num":"",
            "currency": "USD",
            "balance": "4.20",
            "available_balance": "4.20",
            "block_amount": "0.00"
        }
    ],
    "total":2,
    "random_key":"abssdddd2wdw==",
    "sign_type": "RSA",
    "app_id": "2017051914172236111"
}
NameTypeDescription

account_name

string

Account Name

account_num

string

Account number

currency

string

Account currency, as a 3-letter ISO currency code.

balance

string

Total balance,Unit

available_balance

string

Available balance, Unit

block_amount

string

Block amount,Unit

Example

curl --location --request POST 'https://card-api-sandbox.pagsmile.com/issuing/card/query-card-balance' \
--header 'Content-Type: application/json' \
--data-raw '{
    "app_id": "2017051914172236111",
    "partner_id": "000000000000001",
    "sub_partner_id": "",
    "timestamp": "2011-09-23 04:24:03",
    "format": "JSON",
    "version": "2.0",
    "random_key": "jJT3+PR9CSowcR2QOK5OzMjVmTSjGoectzYbO8lENHnboElE",
    "request_id": "F6bEd39c-EecF-C1a2-AFcb-bA9BAeC6",
    "sign_type": "RSA",
    "biz_data": {
        "card_token": "4192571"
    } 
}'

Note: 201************11 is pagsmile's test app id for sandbox

Please use your own app_id when testing.

Last updated