BillingPaymentsCrypto
BillingPaymentsCrypto
  • Getting Started
    • 👋 Welcome
    • 🔑 Sandbox credentials
    • 🏁 Getting Started
    • 📨 Webhooks
  • Payments API Reference
LogoLogo
Payments API ReferenceMerchant

GET
/api/v1/organizations/:organizationId/merchants/:merchantId/accounts
GET
/api/v1/organizations/:organizationId/merchants/:merchantId/accounts
1import requests
2
3url = "https://api.koywe.com/api/v1/organizations/organizationId/merchants/merchantId/accounts"
4
5headers = {"Authorization": "Bearer <token>"}
6
7response = requests.get(url, headers=headers)
8
9print(response.json())
Try it
200Retrieved
1[
2 {
3 "id": "acc_6ead3cb5-e87f-4756-8389-8ad2f56757d0",
4 "name": "Banking of the Corp",
5 "entity": "Citibank NA",
6 "kind": "BANK",
7 "isVirtual": false,
8 "address": "0x123...",
9 "network": "ethereum",
10 "type": "SAVINGS",
11 "accountNumber": "012342134123",
12 "routingNumber": "123456789",
13 "countryId": "ctry_c7168583-0eeb-49b8-8c9b-0bffcf954fef",
14 "currencyId": "cur_8289dc19-e775-4c0c-a42a-e0da129e3b64",
15 "currencyCode": "ARS",
16 "createdAt": "2024-07-01T22:40:22.003Z",
17 "updatedAt": "2024-07-01T22:40:22.003Z",
18 "isDefault": false,
19 "isTracked": false,
20 "merchantId": "mrc_31352afb-ce3a-4b7f-963d-b2512c646400",
21 "contactId": "con_31352afb-ce3a-4b7f-963d-b2512c646400",
22 "countryCode": "AR"
23 }
24]
Was this page helpful?
Previous

Create a new bank account

Next
Built with
Retrieves all bank accounts associated with a specific merchant, with optional filtering by currency symbol.
Get bank accounts by merchant

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

merchantIdstringRequired
Merchant ID
organizationIdstringRequired
Organization ID

Query parameters

currencystringOptional
Filter bank accounts by currency symbol (e.g. USD, ARS, CLP)

Response

Get bankAccounts by Merchant
idstring
namestring
entitystring
kindenum
Allowed values:
isVirtualboolean
addressstring
networkstring
typeenum
Allowed values:
accountNumberstring
routingNumberstring
countryIdstring
currencyIdstring
currencyCodestring
Currency symbol
createdAtstringformat: "date-time"
updatedAtstringformat: "date-time"
isDefaultboolean
isTrackedboolean
merchantIdstring
contactIdstring
countryCodestring or null

Two-letter ISO country code

Errors

Get bankAccounts by Merchant

Filter bank accounts by currency symbol (e.g. USD, ARS, CLP)