Retrieve a customer's payment method
Retrieve a customer's payment method
Retrieves a single payment method by ID for the specified customer.
GET
Retrieve a customer's payment method
Authorizations
Use a Bearer token to access this API.
Path Parameters
Example:
"fcus_01J9XR8M3K7VZ8N2YB4WJ6T0RA"
Example:
"fpm_01J9XR8M3K7VZ8N2YB4WJ6T0RA"
Query Parameters
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
Example:
10
Number of objects to skip before returning results.
Example:
3
Response
Success
An envelope wrapping a single payment method object.
The payment method.
Example:
{
"payment_method_id": "fpm_01J9XR8M3K7VZ8N2YB4WJ6T0RA",
"billing_details": {
"address": {},
"email": "john.doe@example.com",
"name": "Example",
"phone": "+14155550142"
},
"customer": "fcus_01J9XR8M3K7VZ8N2YB4WJ6T0RA",
"metadata": { "order_id": "8842", "channel": "shopify" },
"card": {
"brand": "american_express",
"country": "example_value",
"exp_month": 12,
"exp_year": 2027,
"funding": "credit",
"last4": "example_value"
},
"created_at": "2026-06-15T14:30:00Z",
"test_mode": false,
"off_session": false
}