Skip to main content

Documentation

Add Settlement Bank Account

Add a settlement bank account to a merchant during or after the onboarding process. Bank accounts are linked to the merchant wallet. There can be multiple bank accounts to the same wallet where each bank account is for a specific currency.

Note

Before running this method, you must run the Upload Bank Statement Verification File.

    • ewallet

    • Identifier of the merchant's ewallet. String starting with ewallet_.

  • /v1/partner/onboarding/organization/bank_accounts/:ewallet

  • Add Settlement Bank Account

  • curl -X post v1/partner/onboarding/organization/bank_accounts/ewallet_377a1b20ddbec3f22d5b956d80cf271c' \
    -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' \
    --data-raw '{
        "currency": "EUR",
        "country": "DE",
        "bank_account_alias": "New Bank",
        "account_number": "134511232",
        "bank_name": "NEW BANK OF NEW TOWN LIMITED",
        "beneficiary_name":"Four Stars Tech LIMITED",
        "bic_swift":"DHBKHKHH",
        "entity_type": "company",
        "file_token": "batch_574e2970d561ca2175c3cd99e6170cf1"
    }'
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "Success",
            "response_code": "",
            "operation_id": "e49e9b96-1fa9-44cf-b1ae-cfce5cbbc488"
        },
        "data": {
            "bank_account": "bank_64818da44aac2c39bb0a9a0d37fdd14a",
            "ewallet_token": "ewallet_377a1b20ddbec3f22d5b956d80cf271c",
            "merchant_account_id": "org_8044f944aa36b8edab5eb0793187b453"
        }
    }