Skip to main content
GET
/
v1
/
customers
/
{customer_id}
/
payment-methods
List customer payment methods
curl --request GET \
  --url https://api-sandbox.y.uno/v1/customers/{customer_id}/payment-methods \
  --header 'account-code: <api-key>' \
  --header 'private-secret-key: <api-key>' \
  --header 'public-api-key: <api-key>'
[
  {
    "id": "pm_1a2b3c4d-5e6f-7890-abcd-ef1234567890",
    "customer_id": "c9d0e1f2-3a4b-5c6d-7e8f-9a0b1c2d3e4f",
    "type": "CARD",
    "status": "ACTIVE",
    "card": {
      "last_four": "4242",
      "brand": "VISA",
      "expiry_month": 12,
      "expiry_year": 2028
    },
    "vaulted_token": "vtok_9f8e7d6c-5b4a-3210-fedc-ba9876543210",
    "created_at": "2026-03-01T10:00:00.000Z"
  }
]
Get the list of payment methods the user has enrolled.

Authorizations

public-api-key
string
header
required

Your public API key from the Yuno Dashboard

private-secret-key
string
header
required

Your private secret key (server-side only)

account-code
string
header
required

Your account identifier. The alias X-Account-Code is also accepted.

Path Parameters

customer_id
string<uuid>
required

The unique identifier of the customer

Response

List of enrolled payment methods

id
string<uuid>
Example:

"pm_1a2b3c4d-5e6f-7890-abcd-ef1234567890"

customer_id
string<uuid>
Example:

"c9d0e1f2-3a4b-5c6d-7e8f-9a0b1c2d3e4f"

type
enum<string>
Available options:
CARD,
PIX,
BOLETO,
PSE,
SPEI,
OXXO
Example:

"CARD"

status
enum<string>
Available options:
ACTIVE,
EXPIRED,
REVOKED
Example:

"ACTIVE"

card
object
vaulted_token
string

Token for reuse in future payments

Example:

"vtok_9f8e7d6c-5b4a-3210-fedc-ba9876543210"

created_at
string<date-time>
Example:

"2026-03-01T10:00:00.000Z"