v0.1.0
OAS 3.0.0

Lideflow API

The Lideflow API is designed to facilitate the conversion of stablecoins into fiat currencies and the disbursement of funds to receivers (individuals or businesses)

Server: https://api.lideflow.com/v1
Client Libraries

Recipients

/recipients

Create a recipient.

Body
application/json
  • body
    Type:object
    required
Responses
  • application/json
Request Example forPOST/recipients
curl https://api.lideflow.com/v1/recipients \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "body": {
    "company_name": "",
    "email": ""
  }
}'
{
  "success": true,
  "message": "…",
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "company_name": "…",
    "email": "hello@example.com",
    "user_id": "123e4567-e89b-12d3-a456-426614174000"
  },
  "statusCode": 1
}

Models