Skip to main content
GET
/
api
/
v1
/
cards
/
{card_id}
curl 'https://api.sandbox.uqpay.org/api/v1/cards/d3827a04-837b-41d5-8fad-8bdfa232bbb3' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
{
    "code": 200,
    "message": "Success",
    "data": {
        "card_balance": "10",
        "card_bin": "491724",
        "card_currency": "USD",
        "card_holder_id": "65dd6638-5c23-4d9c-9672-1e7fd0fb0c14",
        "card_name": "testf's card",
        "card_number": "9333019900054650",
        "card_scheme": "VISA",
        "card_status": "ACTIVE",
        "card_type": "PREPAID",
        "create_time": "2023-10-12T11:52:33+08:00",
        "form_factor": "VIRTUAL",
        "update_time": "2023-10-12T17:04:15+08:00"
    }
}
x-client-id
string
required
x-client-id.
x-auth-token
string
required
Bearer YOUR_TOKEN_HERE.

Parameters

card_id
string
required
Unique Identifier for card.

Response

code
number
Indicates whether the call was successful. 200 if successful, 400 if not.
message
string
Response Message. “Success” if successful, others not.
data
array
curl 'https://api.sandbox.uqpay.org/api/v1/cards/d3827a04-837b-41d5-8fad-8bdfa232bbb3' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
{
    "code": 200,
    "message": "Success",
    "data": {
        "card_balance": "10",
        "card_bin": "491724",
        "card_currency": "USD",
        "card_holder_id": "65dd6638-5c23-4d9c-9672-1e7fd0fb0c14",
        "card_name": "testf's card",
        "card_number": "9333019900054650",
        "card_scheme": "VISA",
        "card_status": "ACTIVE",
        "card_type": "PREPAID",
        "create_time": "2023-10-12T11:52:33+08:00",
        "form_factor": "VIRTUAL",
        "update_time": "2023-10-12T17:04:15+08:00"
    }
}
I