# Orders

**Fund orders** (subscription/redemption) drive the trading lifecycle.
Create, read, list, and cancel orders; track status from `received` → `sent` → `confirmed` → `settled`.
Orders reference **accounts** and **instruments**, and map to cash/fund transactions on settlement.

 - [POST /v2/partner/client/{clientId}/order/withdrawal](https://docs.fondo.se/openapi/api/order/createorderwithdrawal.md): Sell fund units and withdraw the resulting amount
 - [POST /v2/partner/client/{clientId}/order/redemptionTransfer](https://docs.fondo.se/openapi/api/order/createorderredemptiontransfer.md): Sell fund units and transfer the resulting cash to another Fondo account belonging to the same client and owner. The redeemed amount settles on the source account first and is then transferred to the
 - [GET /v2/partner/client/{clientId}/order](https://docs.fondo.se/openapi/api/order/getorders.md): Returns every order placed under clientId, including both subscriptions and redemptions. Each order object provides its id, orderType, current status (e.g., received, sent, confirmed, settled), associ
 - [POST /v2/partner/client/{clientId}/order](https://docs.fondo.se/openapi/api/order/createorder.md): Creates a new fund order (subscription or redemption) on the account specified by account under the given clientId. Provide details such as orderType, instrument, amount or units, and optional referen
 - [GET /v2/partner/client/{clientId}/order/{orderId}](https://docs.fondo.se/openapi/api/order/getorderbyid.md): Returns the full details of a single order identified by orderId under the given clientId. The response includes the order's status (for example received, sent, confirmed, settled), orderType (subscri
 - [DELETE /v2/partner/client/{clientId}/order/{orderId}](https://docs.fondo.se/openapi/api/order/cancelorder.md): Cancels the order identified by orderId for the given clientId. Use this endpoint to stop an order that has been created but not yet fully executed or settled. The response returns the complete order
