Skip to main content
GET
/
v1
/
payment_methods
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/payment_methods/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "269e1503-f0de-401e-8cf9-0170f2656793",
  "object": "payment_method",
  "external_payment_method_id": "pm_4_Ju1BB2fs4LLhxzSoekOTDo3",
  "live_mode": true,
  "processor_type": "stripe",
  "reusable": true,
  "supported_currencies": null,
  "type": "card",
  "bank_account": null,
  "card": "6543271b-7214-4558-a739-f6d294672d68",
  "customer": "d2825758-c14a-4d50-9cba-3630f4af4c26",
  "payment_instrument": null,
  "paypal_account": null,
  "created_at": 1767909729,
  "updated_at": 1767909729
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

external_payment_method_id
string

The external processor ID representing this payment method.

live_mode
boolean

Set to true if this charge is in live mode, and set to false if it is in test mode.

processor_type
string

The specific type of processor. The only allowed processors right now are stripe and paypal.

reusable
boolean

Whether or not this payment method can be reused. Only reusable payment methods can be attached to subscriptions and set as a customer's default.

supported_currencies
array | null

A list of currencies that this payment method supports. If null, this payment method supports all currencies.

type
string

The type of payment method. One of bank_account, card, payment_instrument, or paypal_account`.

bank_account

Expandable – The associated bank account ID.

card

Expandable – The associated card ID.

customer

Expandable – The associated customer ID.

payment_instrument

Expandable – The associated payment instrument ID.

paypal_account

Expandable – The associated paypal account ID.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.