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:
Example
You can check the #API reference for the complete list of fields and options.
Replace
YOUR_API_KEY with your actual API key.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"
}'
| Name | Type | Example |
|---|---|---|
| type | enum(individual, business)required | individual |
| first_name | string(required if type is individual) | john |
| last_name | string(required if type is individual) | doe |
| business_name | string(required if type is business) | lideflow |
| address_line_1 | stringrequired | 123 Main St |
| address_line_2 | string | apt 1 |
| city | stringrequired | San Francisco |
| state | stringrequired | CA |
| country | string(ISO 3166-1 alpha-2)required | US |
| postal_code | stringrequired | 94101 |