POST api/v1/general/notes/note
Request Information
URI Parameters
None.
Body Parameters
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 |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"OperatorId": 2,
"EntityId": "397385c2-ccde-493a-96ba-924268424e18",
"Created": "2026-06-27T13:19:04.0642844+03:00",
"CreatedBy": "a8e2523a-f2e7-4f06-bb73-2257461faf82",
"Note": "sample string 6",
"IsDoneRequired": true,
"AssingedTo": "24ca4816-a77e-4a52-8a9e-56e233059f20",
"DueDate": "2026-06-27T13:19:04.0642844+03:00",
"IsDone": true,
"DoneBy": "0ed6d679-5093-4a87-8506-af8cff96dcb2",
"DoneDate": "2026-06-27T13:19:04.0642844+03:00",
"IsDeleted": true,
"Type": 64
}
application/xml, text/xml
Sample:
<NotesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models"> <AssingedTo>24ca4816-a77e-4a52-8a9e-56e233059f20</AssingedTo> <Created>2026-06-27T13:19:04.0642844+03:00</Created> <CreatedBy>a8e2523a-f2e7-4f06-bb73-2257461faf82</CreatedBy> <DoneBy>0ed6d679-5093-4a87-8506-af8cff96dcb2</DoneBy> <DoneDate>2026-06-27T13:19:04.0642844+03:00</DoneDate> <DueDate>2026-06-27T13:19:04.0642844+03:00</DueDate> <EntityId>397385c2-ccde-493a-96ba-924268424e18</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>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<long xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</long>