Skip to main content
GET
/
customers
/
{id}
/
payment-methods
List payment methods
curl --request GET \
  --url https://api.conduit.financial/customers/{id}/payment-methods \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Secret: <api-key>'
{
  "data": [
    {
      "id": "bank_1234",
      "type": "bank",
      "rail": [
        "fedwire"
      ],
      "bankName": "Bank of America",
      "accountOwnerName": "John Doe",
      "accountNumber": "1234567890",
      "currency": "USD",
      "routingNumber": "1234567890",
      "status": "enabled",
      "address": {
        "streetLine1": "123 Main St",
        "city": "New York",
        "state": "NY",
        "postalCode": "10001",
        "country": "USA"
      },
      "entity": {
        "id": "cp_1234567890123456789012345",
        "name": "Mark Davis",
        "entityType": "individual",
        "complianceEntityType": "counterparty"
      }
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Includes an API key in the HTTP headers to authenticate the client.

X-API-Secret
string
header
required

Includes an API secret in the HTTP headers to authenticate the client.

Path Parameters

id
string
required

A valid Customer ID

Example:

"cus_2ofTA13AD0xBtbEvBl20aEb1hEu"

Response

List of payment methods

data
(Bank Payment Method Response · object | object)[]
required
  • Bank Payment Method Response
  • Option 2
Example:
{
"id": "bank_1234",
"type": "bank",
"rail": ["fedwire"],
"bankName": "Bank of America",
"accountOwnerName": "John Doe",
"accountNumber": "1234567890",
"currency": "USD",
"routingNumber": "1234567890",
"status": "enabled",
"address": {
"streetLine1": "123 Main St",
"city": "New York",
"state": "NY",
"postalCode": "10001",
"country": "USA"
},
"entity": {
"id": "cp_1234567890123456789012345",
"name": "Mark Davis",
"entityType": "individual",
"complianceEntityType": "counterparty"
}
}