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": "b8a49fa2-e837-4e82-9ca5-f2bf764a603b",
"Created": "2026-03-13T00:21:32.9446123+02:00",
"CreatedBy": "2aecc057-b9e3-4be0-afa6-3a8c39c16349",
"Note": "sample string 6",
"IsDoneRequired": true,
"AssingedTo": "0dca6834-d7ea-4614-8b4f-217f46d9f4b8",
"DueDate": "2026-03-13T00:21:32.9446123+02:00",
"IsDone": true,
"DoneBy": "ebe5f244-c098-4da8-8503-0b1a53ca0065",
"DoneDate": "2026-03-13T00:21:32.9446123+02: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>0dca6834-d7ea-4614-8b4f-217f46d9f4b8</AssingedTo> <Created>2026-03-13T00:21:32.9446123+02:00</Created> <CreatedBy>2aecc057-b9e3-4be0-afa6-3a8c39c16349</CreatedBy> <DoneBy>ebe5f244-c098-4da8-8503-0b1a53ca0065</DoneBy> <DoneDate>2026-03-13T00:21:32.9446123+02:00</DoneDate> <DueDate>2026-03-13T00:21:32.9446123+02:00</DueDate> <EntityId>b8a49fa2-e837-4e82-9ca5-f2bf764a603b</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>