POST
/
payouts
curl --request POST \
  --url https://api.sandbox1-dev.finhost.io/crypto-transfer/payouts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "network": "ethereum",
  "amount": "42",
  "recipient": {
    "address": "0x1234567890123456789012345678901234567890"
  }
}'
{
  "transaction": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

companyId
string

Company ID

Body

application/json

Response

200 - application/json
OK

The response is of type object.