Skip to main content
GET
Retrieve a payment method

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

payer_id
string
required

ID of the payer.

payment_method_id
string
required

ID of the payment method.

Response

The payment method.

id
string
Example:

"pm_AbC123XyZ"

type
enum<string>

Type of payment method

Available options:
Card,
AchDebit,
SepaDebit,
WireTransfer,
PaperCheck,
Cash,
Paypal,
ApplePay,
GooglePay,
Venmo,
Zelle
Example:

"Card"

active
boolean

Whether the payment method is active

Example:

true

default
boolean

Whether this is the default payment method for the payer

Example:

false

card
object | null

Card details (present when type is Card)

ach_debit
object | null

ACH bank account details (present when type is AchDebit)

sepa_debit
object | null

SEPA bank account details (present when type is SepaDebit)

paypal
object | null

PayPal account details (present when type is Paypal)

created_at
string<date-time>
Example:

"2025-10-08T18:20:31Z"

updated_at
string<date-time>
Example:

"2025-10-08T18:25:00Z"

Last modified on July 8, 2026