Skip to main content
POST
/
settlements
/
request
Creates a settlement request
curl --request POST \
  --url https://commerce1.on-hellgate.dev/settlements/request \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "amount": 123,
  "currency_code": "<string>",
  "distributions": [
    {
      "amount": 123,
      "commission": 123,
      "currency": "<string>",
      "destination_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "order_id": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

X-API-Key
string
header
required

Body

application/json

Body

amount
integer
currency_code
string
distributions
object[]
id
string<uuid>
order_id
string

Response

Success

id
string<uuid>