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": "b50a0add-bc66-4455-a597-700584d5df5b",
"Created": "2026-03-13T00:18:53.5892043+02:00",
"CreatedBy": "8e275661-ff32-44d3-935b-6f4079f195a2",
"Note": "sample string 6",
"IsDoneRequired": true,
"AssingedTo": "15495662-b4a3-4401-92a0-866d601c9ee4",
"DueDate": "2026-03-13T00:18:53.5892043+02:00",
"IsDone": true,
"DoneBy": "296b742e-2119-4e43-800e-250fc2f81062",
"DoneDate": "2026-03-13T00:18:53.5892043+02:00",
"IsDeleted": true,
"Type": 64
},
{
"Id": 1,
"OperatorId": 2,
"EntityId": "b50a0add-bc66-4455-a597-700584d5df5b",
"Created": "2026-03-13T00:18:53.5892043+02:00",
"CreatedBy": "8e275661-ff32-44d3-935b-6f4079f195a2",
"Note": "sample string 6",
"IsDoneRequired": true,
"AssingedTo": "15495662-b4a3-4401-92a0-866d601c9ee4",
"DueDate": "2026-03-13T00:18:53.5892043+02:00",
"IsDone": true,
"DoneBy": "296b742e-2119-4e43-800e-250fc2f81062",
"DoneDate": "2026-03-13T00:18:53.5892043+02: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>15495662-b4a3-4401-92a0-866d601c9ee4</AssingedTo>
<Created>2026-03-13T00:18:53.5892043+02:00</Created>
<CreatedBy>8e275661-ff32-44d3-935b-6f4079f195a2</CreatedBy>
<DoneBy>296b742e-2119-4e43-800e-250fc2f81062</DoneBy>
<DoneDate>2026-03-13T00:18:53.5892043+02:00</DoneDate>
<DueDate>2026-03-13T00:18:53.5892043+02:00</DueDate>
<EntityId>b50a0add-bc66-4455-a597-700584d5df5b</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>15495662-b4a3-4401-92a0-866d601c9ee4</AssingedTo>
<Created>2026-03-13T00:18:53.5892043+02:00</Created>
<CreatedBy>8e275661-ff32-44d3-935b-6f4079f195a2</CreatedBy>
<DoneBy>296b742e-2119-4e43-800e-250fc2f81062</DoneBy>
<DoneDate>2026-03-13T00:18:53.5892043+02:00</DoneDate>
<DueDate>2026-03-13T00:18:53.5892043+02:00</DueDate>
<EntityId>b50a0add-bc66-4455-a597-700584d5df5b</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>