> For the complete documentation index, see [llms.txt](https://tradesync.gitbook.io/tradesync/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tradesync.gitbook.io/tradesync/fxtr-v2/functions-of-fxtr-v2/open-stream-for-the-account/messages-that-can-be-sent-in-open-stream/getstatus.md).

# GetStatus

**`GetStatus`** -  in case of succes return value is “ok” otherwise responses with an error code.

**Example:**

`{"id": 11, "type":"GetStatus", "body": {}}`

**Request Body Fields:** n/a

**Responce Type** - `Status.`

**Responce Body Fields:**

<table><thead><tr><th>Parameter</th><th width="161" data-type="checkbox">Always returned</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td><code>mt</code></td><td>true</td><td><code>string</code></td><td>In case of succes returns value is “ok” otherwise responses with an error code.</td></tr><tr><td><code>account</code></td><td>true</td><td><code>unit</code></td><td>account that used to opend socket connection</td></tr><tr><td><code>server_code</code></td><td>true</td><td><code>string</code></td><td>code that was used to start RW-Manager</td></tr><tr><td><code>build</code></td><td>true</td><td><code>string</code></td><td>build version</td></tr><tr><td><code>version</code></td><td>true</td><td><code>string</code></td><td>time of builds for the binary</td></tr><tr><td><code>instance_id</code></td><td>false</td><td><code>string</code></td><td>the ID of the instance</td></tr></tbody></table>

**Example:**

```json
{"type": "Status", "id":11, "body": 
        {     "mt": "OK",     
              "account": 91032,     
              "server_code": "mt5_trial2",     
              "build": "master.4339c6b4",     
              "version": "13/07/2023 14:46:06.80", 
              "instance_id": "i-instances_id" 
        }
 }
```
