> For the complete documentation index, see [llms.txt](https://sway-technologies.gitbook.io/sway-charts-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sway-technologies.gitbook.io/sway-charts-api-documentation/rest-api-specification/cash-transaction.md).

# Cash Transaction

Represents cash transactions related to various activities in the system: balance deposits / withdrawals, cash settlements etc.

| Field               | Value                                                                                                                                                                         | Type                                                                                                  |
| ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- |
| **account**         | Unique code of the account this transaction belongs to                                                                                                                        | [Account code](https://api.swaycharts.io/developers/#/DXtrade-REST-API?id=account-code), **required** |
| **transactionCode** | Unique string code of the transaction                                                                                                                                         | [Number](https://api.swaycharts.io/developers/#/DXtrade-REST-API?id=numbers), **required**            |
| **orderCode**       | Internal unique string code of an order chain in the system. Absent if this transaction is not related to an order.                                                           | String, **required**                                                                                  |
| **tradeCode**       | Unique string code of the trade. Corresponds to the `executionCode` of a trade (see [Execution](https://api.swaycharts.io/developers/#/DXtrade-REST-API?id=execution))        | String, *optional*                                                                                    |
| **version**         | Numeric version of the account to which this transaction relates                                                                                                              | [Number](https://api.swaycharts.io/developers/#/DXtrade-REST-API?id=numbers), **required**            |
| **clientOrderId**   | Unique order id assigned by the client during order placement                                                                                                                 | [Client Id](https://api.swaycharts.io/developers/#/DXtrade-REST-API?id=client-ids), **required**      |
| **type**            | Cash transaction type                                                                                                                                                         | String, **required**                                                                                  |
| **value**           | Amount of the transaction in account’s base currency for margin accounts and in transaction's currency for cash accounts, signed (positive means profit, negative means loss) | [Number](https://api.swaycharts.io/developers/#/DXtrade-REST-API?id=numbers), **required**            |
| **currency**        | Currency of this transaction                                                                                                                                                  | String, **required**                                                                                  |
| **transactionTime** | Timestamp in UTC of this transaction                                                                                                                                          | [Timestamp](https://api.swaycharts.io/developers/#/DXtrade-REST-API?id=date-times), **required**      |

## *<mark style="color:blue;">**string**</mark>***&#x20;Type**

One of

* `COMMISSION`
* `FINANCING`
* `DEPOSIT`
* `WITHDRAWAL`
* `SETTLEMENT`
* `COST`
* `EX_DIVIDEND`
* `REBATE`
* `NEGATIVE_BALANCE_CORRECTION`
* `BUST`


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://sway-technologies.gitbook.io/sway-charts-api-documentation/rest-api-specification/cash-transaction.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
