GET
/
wallet
/
cards
/
stored
Get stored card details
curl --request GET \
  --url https://api.sandbox.henrylabs.ai/v0/wallet/cards/stored \
  --header 'x-api-key: <api-key>' \
  --header 'x-user-id: <x-user-id>'
{
  "success": true,
  "status": "<string>",
  "message": "<string>",
  "data": {
    "billingAddress": "<string>",
    "cardBrand": "<string>",
    "cardExp": "<string>",
    "cardHolder": "<string>",
    "city": "<string>",
    "createdAt": "<string>",
    "email": "<string>",
    "id": "<string>",
    "isActive": true,
    "isDefault": true,
    "last4Digits": "<string>",
    "phoneNumber": "<string>",
    "state": "<string>",
    "updatedAt": "<string>",
    "zipCode": "<string>"
  }
}
Retrieve stored payment card details for a user. Cards are returned with masked numbers showing only the last 4 digits for security.

Authorizations

x-api-key
string
header
required

Headers

x-user-id
string
required

Response

200
application/json

Card details retrieved successfully

The response is of type object.