---
title: "Create payout order"
method: POST
path: "/payout_orders"
tags: ["Payout Orders"]
---

# Create payout order

`POST /payout_orders`

Create a new payout order.

## Headers

- `Accept-Language` 'es' | 'en'

## Request body

- PayoutOrderRequest — a payout order
  - `allowed_payout_methods` string[], required — The payout methods that are allowed for the payout order.
  - `amount` integer, required — The amount of the payout order.
  - `currency` string, required — The currency in which the payout order is made.
  - `customer_info` PayoutOrderRequestCustomerInfo, required — The customer information to whom the payout order is made.
    - `customer_id` string, required
  - `expires_at` integer, required — The expiration time of the payout order in Unix timestamp.
  - `metadata` object — The metadata of the payout order.
  - `payout` Payout, required — The payout information of the payout order.
    - `payout_method` PayoutMethod, required — The payout method of the payout order.
      - `type` string, required — The type of the payout method.
  - `reason` string, required — The reason for the payout order.

## Response `200`

successful operation

## Other responses

- `401` — authentication error
- `402` — payment required error
- `404` — not found entity
- `422` — parameter validation error
- `500` — internal server error

---

[API](https://skmtc.net/conekta/apis/conekta-api.md) · [All operations](https://skmtc.net/conekta/apis/conekta-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/conekta/conekta-api/revisions/029df3052bca/schema)
