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