cURL
curl --request GET \ --url https://api.collectpure.com/execution/payment-methods/v1 \ --header 'x-api-key: <api-key>'
{ "success": true, "data": { "defaultPaymentMethodId": "<string>", "paymentMethods": [ { "id": "<string>", "type": "<string>", "paymentMethod": "stripe_ach", "isDefault": true, "card": { "brand": "<string>", "last4": "<string>", "expMonth": 123, "expYear": 123 }, "bankAccount": { "bankName": "<string>", "last4": "<string>", "accountType": "<string>" } } ] } }
List all Stripe payment methods for the authenticated organization, including which one is the default.
Rate limit: 120 requests burst, 60 requests/minute sustained.
API key for authentication
Default Response
true
Show child attributes
Was this page helpful?