# Confirm order

## <mark style="color:$warning;">\[POST]</mark> /api/v2/order/confirm

Confirms an order. If transferInstructions.fieldsToConfirmOrder of deposit or payout is non-empty, include them.

Request body type:

{% code overflow="wrap" expandable="true" %}

```typescript
type RequestBody = {
  orderId: string;
  fieldsToConfirmOrder?: Record<string, string>;
}
```

{% endcode %}

Request body example:

```json
{
  "orderId": "68728fa56ff494df5f39faf5"
}
```

Returns an updated order.
