Skip to main content
GET
/
clients
/
{id}
/
payment-methods
List client payment methods
curl --request GET \
  --url https://api.conduit.financial/clients/{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 Client ID

Pattern: ^client_[a-zA-Z0-9]{27}$
Example:

"client_2ofTA13AD0xBtbEvBl20aEb1hEu"

Response

List of payment methods

data
(Bank Payment Method Response · object | object)[]
required
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"
  }
}