MngUpdateNote¶
Updates note fields. id is required.
Request¶
{
"command": "MngUpdateNote",
"extID": "1",
"data": {
"id": 1,
"updated_by": 10,
"text": "Updated note text"
}
}
Request Data¶
| Field | Type | Required | Description |
|---|---|---|---|
id |
int | Yes | Note id |
updated_by |
int | No | Manager id |
ast_json |
object/array/string | No | AST message body |
text |
string | No | Plain preview/search text |
files_json |
object/array/string | No | Optional files payload |
type |
int | No | 0 note, 1 record |
status |
int | No | 0 active, 1 archive |
source |
int | No | 0 manual, 1 system, 2 import |
Response Data¶
{
"note": {
"id": 1,
"text": "Updated note text"
}
}