Skip to main content
GET
/
api
/
payment-methods
/
requirements
Payment Method Requirements
curl --request GET \
  --url https://api.example.com/api/payment-methods/requirements \
  --header 'Authorization: <authorization>'
{
  "bank_transfer": {
    "fields": ["bankName", "accountNumber", "routingNumber", "currency"]
  },
  "wallet": {
    "fields": ["walletAddress", "chainId"]
  }
}
Returns the fields required to create a payment method based on provider capabilities.
Authorization
string
required
Bearer token from Auth0
{
  "bank_transfer": {
    "fields": ["bankName", "accountNumber", "routingNumber", "currency"]
  },
  "wallet": {
    "fields": ["walletAddress", "chainId"]
  }
}