API OVERVIEW
CORE
- Auth
- Balances
ISSUING
- Cards
- Products
- Cardholders
- Transactions
PAYOUT
- Payer
- Payout
- Beneficiaries
Webhooks
- Payout
- Beneficiary
Cardholders
Retrieve cardholder details
This endpoint retrieve cardholder details by cardholder id.
GET
/
api
/
v1
/
cardholders
/
{card_holder_id}
Copy
curl 'https://api.sandbox.uqpay.org/api/v1/cardholders/05618fcd-ba44-4933-8f80-046a32f18399' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
Copy
{
"code": 200,
"message": "Success",
"data": {
"card_holder_id": "05618fcd-ba44-4933-8f80-046a32f18399",
"email": "[email protected]",
"first_name": "hello",
"last_name": "world",
"date_birth": "2023-09-28T00:00:00+08:00",
"phone_number": "93_1564815641848",
"residential_address": "{\"country\":\"BB\",\"state\":\"wed\",\"city\":\"ewd\",\"zip_code\":\"ewd\",\"address\":\"ewdewd\"}",
"delivery_address": "",
"create_time": "2023-09-28T15:04:44+08:00",
"update_time": "2023-09-28T15:04:44+08:00",
"card_holder_status": "SUCCESS"
}
}
Header
x-client-id
.
Bearer YOUR_TOKEN_HERE
.
Parameters
The id of the cardholder for the card.
Response
Indicates whether the call was successful. 200 if successful, 400 if not.
Response Message. “Success” if successful, others not.
The id of the cardholder for the card.
Email of cardholder.
First name of cardholder.
Last name of cardholder.
Date birth of cardholder.
Phone number of cardholder.
Residential address of cardholder.
Delivery address of cardholder.
Create time of cardholder.
Update time of cardholder.
Card holder status of cardholder.
Copy
curl 'https://api.sandbox.uqpay.org/api/v1/cardholders/05618fcd-ba44-4933-8f80-046a32f18399' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
Copy
{
"code": 200,
"message": "Success",
"data": {
"card_holder_id": "05618fcd-ba44-4933-8f80-046a32f18399",
"email": "[email protected]",
"first_name": "hello",
"last_name": "world",
"date_birth": "2023-09-28T00:00:00+08:00",
"phone_number": "93_1564815641848",
"residential_address": "{\"country\":\"BB\",\"state\":\"wed\",\"city\":\"ewd\",\"zip_code\":\"ewd\",\"address\":\"ewdewd\"}",
"delivery_address": "",
"create_time": "2023-09-28T15:04:44+08:00",
"update_time": "2023-09-28T15:04:44+08:00",
"card_holder_status": "SUCCESS"
}
}
Copy
curl 'https://api.sandbox.uqpay.org/api/v1/cardholders/05618fcd-ba44-4933-8f80-046a32f18399' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
Copy
{
"code": 200,
"message": "Success",
"data": {
"card_holder_id": "05618fcd-ba44-4933-8f80-046a32f18399",
"email": "[email protected]",
"first_name": "hello",
"last_name": "world",
"date_birth": "2023-09-28T00:00:00+08:00",
"phone_number": "93_1564815641848",
"residential_address": "{\"country\":\"BB\",\"state\":\"wed\",\"city\":\"ewd\",\"zip_code\":\"ewd\",\"address\":\"ewdewd\"}",
"delivery_address": "",
"create_time": "2023-09-28T15:04:44+08:00",
"update_time": "2023-09-28T15:04:44+08:00",
"card_holder_status": "SUCCESS"
}
}
Assistant
Responses are generated using AI and may contain mistakes.