Skip to main content
GET
/
api
/
payment-methods
/
{id}
Get Payment Method
curl --request GET \
  --url https://api.example.com/api/payment-methods/{id} \
  --header 'Authorization: <authorization>'
{
  "id": "pm_abc123",
  "type": "bank_transfer",
  "bankName": "Chase",
  "accountNumber": "****7890",
  "currency": "USD"
}
Authorization
string
required
Bearer token from Auth0
id
string
required
Payment method ID
{
  "id": "pm_abc123",
  "type": "bank_transfer",
  "bankName": "Chase",
  "accountNumber": "****7890",
  "currency": "USD"
}