Query Remaining Card Limit

Create Card Limit

Request URL

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

Request Header

Name
Type
Description

Content-Type*

string

application/json; charset=UTF-8

Request Body

Refer to : common

Biz_data :

Name
Type
Description

card_token*

string

Card Token

stat_date

string

Stat Date

Response

{
    "code": "10000",
    "msg": "Success",
    "data": {
        "card_token": "447176198423",
        "account_num": "658704******3131",
        "daily_used_transactions": 0,
        "daily_used_amount": "0.00",
        "monthly_used_amount": "0.00",
        "total_used_amount": "0.00",
        "daily_remaining_transactions": 50,
        "daily_remaining_amount": "30.20",
        "monthly_remaining_amount": "10.00",
        "total_remaining_amount": "0.00"
    },
    "total": 1,
    "sign_type": "RSA",
    "app_id": "17199901968975887"
}
Name
Type
Description

card_token

string

Card Token

account_num

string

Account Number

daily_used_transactions

integer

Daily Used Transactions

daily_used_amount

string

Daily Used Amount

monthly_used_amount

string

Monthly Used Amount

total_used_amount

string

Total Used Amount

daily_remaining_transactions

integer

Daily Remaining Transactions

daily_remaining_amount

string

Daily Remaining Amount

monthly_remaining_amount

string

Monthly Remaining Amount

total_remaining_amount

string

Total Remaining Amount

Example


curl --location --request POST 'https://card-api-sandbox.pagsmile.com/issuing/card/query-remaining-limit' \
--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": "jJT3+PR9CSowcR2QOK5OzMjJT3+PR9CSowcR2QOK5OzM"
}'

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

Please use your own app_id when testing.

Last updated