v1
latestOpenAPI 3.0.1MIT2026-07-26336777.7 KBRetrieve a list of payment method tokens for a customer created within a specific time range, with support for filtering and pagination. This endpoint allows you to track and analyse all payment method tokens for a customer. It's useful for building dashboards, reconciling payment methods, or reviewing saved payment methods programmatically.
Path parameters
Unique identifier of the customer
Query parameters
Start of range in epoch milliseconds. Fetches items created after this timestamp.
End of range in epoch milliseconds. Fetches items created before this timestamp.
Max items per page (default 50, max 100)
Cursor-based pagination token. Use the offset value from metadata.offset in the previous response to fetch the next page. Continue until metadata.offset is no longer present in the response.
🚨 Important: Changing any query parameters invalidates existing offset values and requires restarting pagination from the beginning.
For detailed pagination implementation guide, see Pagination Guide.
Filter by payment method token status. Valid values: LIVE, DELETED. Refer payment method token status for more details.
Response
Example response
{
"data": [
{
"paymentMethodId": "pmt_ftoeKIYGC3f43frT",
"paymentMethod": "CARD",
"customerId": "cus_Tfd3Jq1tZxPjYVhRQW2r3",
"status": "LIVE",
"createdAt": 1727340330123
}
]
}