Skip to main content

Documentation

List Settlement Bank Accounts

List the settlement bank accounts of a merchant during or after the onboarding process. Bank accounts are linked to the merchant wallet.

Returns an array of objects where each object contains the details of a bank account:

  • /v1/partner/onboarding/organization/bank_accounts

  • List Settlement Bank Accounts

  • curl -X get v1/partner/onboarding/organization/bank_accounts
    -H 'access_key: your-access-key-here' \
    -H 'Content-Type: application/json' \
    -H 'idempotency: your-idempotency-parameter-here' \
    -H 'salt: your-random-string-here' \
    -H 'signature: your-calculated-signature-here' \
    -H 'timestamp: your-unix-timestamp-here' \
    -H 'merchant_account_id: your-merchant-account-here' \
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "Success",
            "response_code": "",
            "operation_id": "d7b75144-5602-4aa5-b886-34bb18f95ef8"
        },
        "data": [
            {
                "bank_account_id": "bank_4b693c599d2691db1b9abd305028f1c8",
                "ewallet_token": "ewallet_2a27685f2f71ae9a9fe4265fceabcab7",
                "merchant_account_id": "org_ec130a123c9d25af939774ddb2c00a32",
                "currency": "USD",
                "country": "US",
                "bank_account_alias": "bank of anytown",
                "bank_name": "Anytown bank LIMITED",
                "account_number": null,
                "bic_swift": null,
                "beneficiary_name": "ANY TECHNOLOGY LIMITED",
                "entity_type": "company",
                "static_reference_id": null,
                "sort_code": "60-16-14",
                "clabe": "31926817",
                "iban": "GB29NWBK60161331926818",
                "beneficiary_street_address": "233 East 34th street",
                "beneficiary_postal_code": "432Z2",
                "beneficiary_city": "Any Town",
                "beneficiary_national_id": "123456789",
                "settlement_configuration": {
                    "type": "Settlement by Rapyd",
                    "frequency": "daily",
                    "day": null,
                    "min_amount": 100,
                    "min_amount_currency": "USD",
                    "client_configured_min_settlement_amount": null
                },
                "status": "active"
            },
            {
                "bank_account_id": "bank_38ac2aa3dcbc9279b9520ef8d3d433dd",
                "ewallet_token": "ewallet_2a27685f2f71ae9a9fe4265fceabcab7",
                "merchant_account_id": "org_ec130a123c9d25af939774ddb2c00a32",
                "currency": "EUR",
                "country": "DE",
                "bank_account_alias": "New Town Bank",
                "bank_name": "New Town Bank LIMITED",
                "account_number": "134511232",
                "bic_swift": "DHBKHKHH",
                "beneficiary_name": "Four Stars Limo Service",
                "entity_type": "company",
                "static_reference_id": null,
                "sort_code": "60-16-13",
                "clabe": "31926819",
                "iban": "GB29NWBK60161331926819",
                "beneficiary_street_address": "23 West 35th Street",
                "beneficiary_postal_code": "ZRTE3",
                "beneficiary_city": "New Town",
                "beneficiary_national_id": "123789456",
                "settlement_configuration": {
                    "type": "Settlement by Rapyd",
                    "frequency": "daily",
                    "day": null,
                    "min_amount": 100,
                    "min_amount_currency": "EUR",
                    "client_configured_min_settlement_amount": null
                },
                "status": "active"
            }
        ]
    }