# Creates a payout

Creates a Payout object.

Endpoint: POST /payouts
Version: v1
Security: apiKey

## Security:

  - `apiKey` (unknown)
    http bearer API key

## Request fields (application/json):

  - `amount` (integer, required)
    The amount that will be withdrawn from your balance.

  - `currency` (string, required)
    The currency of the payout.
    Enum: "EUR"

  - `metadata` (object)
    You can put in random data that you like to save alongside the payout. When you fetch the payout this will be returned in the `metadata` field.

## Response 201:

  - `201` (unknown)
    payout created

## Response 201 fields (application/json):

  - `id` (string, required)

  - `type` (string, required)
    Enum: "payout"

  - `amount` (integer, required)

  - `fee_amount` (integer, required)

  - `fee_vat_amount` (integer, required)

  - `currency` (string, required)
    Enum: "EUR"

  - `description` (string, required)

  - `state` (string, required)

  - `bank_account` (any, required)

  - `bank_account.type` (string, required)
    Enum: "sepa"

  - `bank_account.iban` (string, required)

  - `bank_account.name` (string, required)

  - `bank_account.account_number` (string, required)

  - `bank_account.routing_number` (string, required)

  - `metadata` (object, required)

  - `created_at` (string, required)

  - `_links` (object, required)

  - `_links.self` (string, required)

