List payment methods
Returns a paginated list of payment methods for a member or company, or for the authenticated user when neither is given, with optional filtering by creation date. A payment method is a stored representation of how a customer intends to pay, such as a card, bank account, or digital wallet.
Required permissions:
member:payment_methods:read
Authorizations
An Account API key, account-scoped JWT, App API key, or user OAuth token. Prepend the key or token with Bearer, for example Bearer ***************************.
Query Parameters
Returns the elements in the list that come after the specified cursor.
Returns the elements in the list that come before the specified cursor.
Returns the first n elements from the list.
42
Returns the last n elements from the list.
42
The unique identifier of the member to list payment methods for. Omit this and company_id to list your own saved payment methods.
"mber_xxxxxxxxxxxxx"
The unique identifier of the company. Provide either this or member_id, not both. Omit both to address your own saved payment methods.
"biz_xxxxxxxxxxxxxx"
The sort direction for ordering results, either ascending or descending.
asc, desc Only return payment methods created before this timestamp.
"2023-12-01T05:00:00.401Z"
Only return payment methods created after this timestamp.
"2023-12-01T05:00:00.401Z"
Only return methods that can be charged this way after the buyer leaves. A checkout that renews should pass off_session, which drops the buyer's platform balance — a balance settles against the ledger at the time of purchase and cannot be charged later.
off_session, on_session Response
A successful response
The connection type for PaymentMethodInterface.
A list of nodes.
A saved payment method with no type-specific details available.
- BasePaymentMethod
- CardPaymentMethod
- UsBankAccountPaymentMethod
- CashappPaymentMethod
- IdealPaymentMethod
- SepaDebitPaymentMethod
- PlatformBalancePaymentMethod
Information to aid in pagination.

