Skip to main content
GET
/
execution
/
payment-methods
/
v1
List payment methods
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>"
        }
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication

Response

200 - application/json

Default Response

success
enum<boolean>
required
Available options:
true
data
object
required