Lideflow-Logo

Bank accountsBank accounts

Bank accounts associated with a receiver for fiat payouts

Overview

A Bank Account is a financial account linked to a receiver, used to facilitate fiat payouts. Each bank account contains details such as the account number, bank name, and address, ensuring funds are sent to the correct destination.

Lideflow accept two types of accounts: individual and business for receiving fiat payments.

You need to assign a bank account to a receiver in order to make a payout.

Create a receiver bank account

Before creating a bank account, you need to:

  1. 1Create your API key
  2. 2Create a receiver

Example

You can check the #API reference for the complete list of fields and options.

curl
curl --request POST \
     --url https://api.lideflow.com/bank-accounts \
     --header 'Authorization: Bearer YOUR_API_KEY' \
     --header 'Content-Type: application/json' \
     --data '{
        "receiver_id": "dab3a9f0-5f5f-4506-a847-7f8f7c155e48",
        "label": "Lideflow main account",
        "account_number": "1234567890",
        "bank_name": "Bank of America",
        "bank_address_line_1": "2701 Mission St",
        "bank_address_line_2": "building a",
        "bank_city": "San Francisco",
        "bank_state": "CA",
        "bank_country": "US",
        "bank_postal_code": "94110"
        }'