GET api/v1/general/{entityId}/notes
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| entityId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of NotesModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| OperatorId | integer |
Required |
|
| EntityId | globally unique identifier |
Required |
|
| Created | date |
Required |
|
| CreatedBy | globally unique identifier |
Required |
|
| Note | string |
Required Max length: 500 |
|
| IsDoneRequired | boolean |
Required |
|
| AssingedTo | globally unique identifier |
None. |
|
| DueDate | date |
None. |
|
| IsDone | boolean |
None. |
|
| DoneBy | globally unique identifier |
None. |
|
| DoneDate | date |
None. |
|
| IsDeleted | boolean |
Required |
|
| Type | byte |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"OperatorId": 2,
"EntityId": "82a7aae7-6b1f-41f6-869f-b0dc5bf16d81",
"Created": "2026-08-22T12:35:02.8940226+03:00",
"CreatedBy": "c781c4fa-0607-481f-a0e0-102220eb05d9",
"Note": "sample string 6",
"IsDoneRequired": true,
"AssingedTo": "3b38e7fa-72c3-473d-9a27-4551d808a151",
"DueDate": "2026-08-22T12:35:02.8940226+03:00",
"IsDone": true,
"DoneBy": "bd59f248-dae6-4602-8c2d-145627ee2c79",
"DoneDate": "2026-08-22T12:35:02.8940226+03:00",
"IsDeleted": true,
"Type": 64
},
{
"Id": 1,
"OperatorId": 2,
"EntityId": "82a7aae7-6b1f-41f6-869f-b0dc5bf16d81",
"Created": "2026-08-22T12:35:02.8940226+03:00",
"CreatedBy": "c781c4fa-0607-481f-a0e0-102220eb05d9",
"Note": "sample string 6",
"IsDoneRequired": true,
"AssingedTo": "3b38e7fa-72c3-473d-9a27-4551d808a151",
"DueDate": "2026-08-22T12:35:02.8940226+03:00",
"IsDone": true,
"DoneBy": "bd59f248-dae6-4602-8c2d-145627ee2c79",
"DoneDate": "2026-08-22T12:35:02.8940226+03:00",
"IsDeleted": true,
"Type": 64
}
]
application/xml, text/xml
Sample:
<ArrayOfNotesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models">
<NotesModel>
<AssingedTo>3b38e7fa-72c3-473d-9a27-4551d808a151</AssingedTo>
<Created>2026-08-22T12:35:02.8940226+03:00</Created>
<CreatedBy>c781c4fa-0607-481f-a0e0-102220eb05d9</CreatedBy>
<DoneBy>bd59f248-dae6-4602-8c2d-145627ee2c79</DoneBy>
<DoneDate>2026-08-22T12:35:02.8940226+03:00</DoneDate>
<DueDate>2026-08-22T12:35:02.8940226+03:00</DueDate>
<EntityId>82a7aae7-6b1f-41f6-869f-b0dc5bf16d81</EntityId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
<IsDone>true</IsDone>
<IsDoneRequired>true</IsDoneRequired>
<Note>sample string 6</Note>
<OperatorId>2</OperatorId>
<Type>64</Type>
</NotesModel>
<NotesModel>
<AssingedTo>3b38e7fa-72c3-473d-9a27-4551d808a151</AssingedTo>
<Created>2026-08-22T12:35:02.8940226+03:00</Created>
<CreatedBy>c781c4fa-0607-481f-a0e0-102220eb05d9</CreatedBy>
<DoneBy>bd59f248-dae6-4602-8c2d-145627ee2c79</DoneBy>
<DoneDate>2026-08-22T12:35:02.8940226+03:00</DoneDate>
<DueDate>2026-08-22T12:35:02.8940226+03:00</DueDate>
<EntityId>82a7aae7-6b1f-41f6-869f-b0dc5bf16d81</EntityId>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
<IsDone>true</IsDone>
<IsDoneRequired>true</IsDoneRequired>
<Note>sample string 6</Note>
<OperatorId>2</OperatorId>
<Type>64</Type>
</NotesModel>
</ArrayOfNotesModel>