Skip to main content
GET
/
api
/
v2
/
wallet
/
cards
/
default
{
  "billing_address": "123 Main Street",
  "card_brand": "visa",
  "card_exp": "12/25",
  "card_holder": "John Doe",
  "city": "New York",
  "created_at": "2023-01-01T00:00:00Z",
  "email": "john.doe@example.com",
  "id": "card_12345",
  "is_active": true,
  "is_default": true,
  "last4_digits": "1111",
  "phone_number": "+12125551234",
  "state": "NY",
  "updated_at": "2023-01-02T00:00:00Z",
  "zip_code": "10001"
}

Authorizations

X-Auth0-Key
string
header
required

Internal use only

Headers

x-user-id
string
required

End-user identifier within a customer organization. Required for user-scoped operations.

Response

Default card retrieved successfully

Response model for card details (no sensitive data).

id
string
required

Unique card identifier

card_holder
string
required

Card holder name

Required string length: 1 - 255
card_exp
string
required

Card expiration (MM/YY)

email
string<email>
required

Cardholder email

phone_number
string<phone>
required

Phone number in E.164 format

Examples:

"+12125551234"

"+442071234567"

"+972547828353"

billing_address
string
required

Billing address

Minimum length: 1
zip_code
string
required

ZIP code

is_default
boolean
default:false

Default payment method flag

is_active
boolean
default:true

Active status (soft delete flag)

created_at
string<date-time> | null

Creation timestamp

updated_at
string<date-time> | null

Last update timestamp

last4_digits
string | null

Last 4 digits

city
string | null

City

Minimum length: 1
state
string | null

State/province code

card_brand
string | null

Card network (visa, mastercard, amex, discover, diners, jcb, unionpay, maestro, mir, verve, dankort, troy, other)

I