# Initiates a payout to a payee. The payout is processed asynchronously. Use GET /v1/payouts/{id} to check its status. Required fields: PayeeId, Amount, Currency. Optional field: Description. MerchantId is automatically obtained from the authenticated user. Endpoint: POST /v1/payouts Security: Bearer ## Request fields (application/json): - `payeeId` (string, required) - `payoutAccountId` (string, required) - `amount` (number, required) - `currencyCode` (string, required) - `description` (string,null) ## Response 201 fields (text/plain): - `state` (string,null) - `payoutId` (string,null) - `createdAt` (string) Timestamp when the payout was created ## Response 400 fields (text/plain): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 404 fields (text/plain): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null)