Lideflow-Logo

ReceiversReceivers

Individuals or businesses that will receive fiat payments.

What is a receiver ?

A receiver is an individual or business entitydesignated to receive payouts. It represents the destination where funds will be sent.

You can attach multiple bank accounts to a receiver, allowing flexibility in how funds are disbursed.

Creating a receiver

Before creating a receiver, you need to:

  1. 1Create your API key

Example

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

curl
curl --request POST \
     --url https://api.lideflow.com/receivers \
     --header 'Authorization: Bearer YOUR_API_KEY' \
     --header 'Content-Type: application/json' \
     --data '{
        "type": "individual",
        "first_name": "John",
        "last_name": "Doe",
        "address_line_1": "123 Main St",
        "city": "San Francisco",
        "state": "CA",
        "postal_code": "94101",
        "country": "US"
        }'
    
NameTypeExample
typeenum(individual, business)requiredindividual
first_namestring(required if type is individual)john
last_namestring(required if type is individual)doe
business_namestring(required if type is business)lideflow
address_line_1stringrequired123 Main St
address_line_2stringapt 1
citystringrequiredSan Francisco
statestringrequiredCA
countrystring(ISO 3166-1 alpha-2)requiredUS
postal_codestringrequired94101