Skip to main content
GET
/
v1
/
customers
/
{customer_id}
/
payment-methods
/
{payment_method_id}
Get payment method
curl --request GET \
  --url https://api-sandbox.y.uno/v1/customers/{customer_id}/payment-methods/{payment_method_id} \
  --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"
}
Retrieve a specific payment method that a user has enrolled in.
Retrieve Enrolled Payment MethodTo recover the enrolled payment method information, you need to provide the payment_method_id, which is the vaulted_token received when using the Enroll Payment Method endpoint.

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

payment_method_id
string<uuid>
required

The unique identifier of the payment method

Response

Payment method details

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"