GET api/v1/general/{entityId}/notes

Request Information

URI Parameters

NameDescriptionTypeAdditional information
entityId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of NotesModel
NameDescriptionTypeAdditional 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": "0bb3d150-77cd-4e3e-a82f-9f91597e63e5",
    "Created": "2025-12-10T17:34:05.4146593+02:00",
    "CreatedBy": "67a2011b-e11c-4788-8577-84e3d75caa52",
    "Note": "sample string 6",
    "IsDoneRequired": true,
    "AssingedTo": "f56d17ac-9191-4928-b275-d975aa8c3d0f",
    "DueDate": "2025-12-10T17:34:05.4146593+02:00",
    "IsDone": true,
    "DoneBy": "e27d24d7-0b1a-4d43-a7fb-bbc62ef2e5ed",
    "DoneDate": "2025-12-10T17:34:05.4146593+02:00",
    "IsDeleted": true,
    "Type": 64
  },
  {
    "Id": 1,
    "OperatorId": 2,
    "EntityId": "0bb3d150-77cd-4e3e-a82f-9f91597e63e5",
    "Created": "2025-12-10T17:34:05.4146593+02:00",
    "CreatedBy": "67a2011b-e11c-4788-8577-84e3d75caa52",
    "Note": "sample string 6",
    "IsDoneRequired": true,
    "AssingedTo": "f56d17ac-9191-4928-b275-d975aa8c3d0f",
    "DueDate": "2025-12-10T17:34:05.4146593+02:00",
    "IsDone": true,
    "DoneBy": "e27d24d7-0b1a-4d43-a7fb-bbc62ef2e5ed",
    "DoneDate": "2025-12-10T17:34:05.4146593+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>f56d17ac-9191-4928-b275-d975aa8c3d0f</AssingedTo>
    <Created>2025-12-10T17:34:05.4146593+02:00</Created>
    <CreatedBy>67a2011b-e11c-4788-8577-84e3d75caa52</CreatedBy>
    <DoneBy>e27d24d7-0b1a-4d43-a7fb-bbc62ef2e5ed</DoneBy>
    <DoneDate>2025-12-10T17:34:05.4146593+02:00</DoneDate>
    <DueDate>2025-12-10T17:34:05.4146593+02:00</DueDate>
    <EntityId>0bb3d150-77cd-4e3e-a82f-9f91597e63e5</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>f56d17ac-9191-4928-b275-d975aa8c3d0f</AssingedTo>
    <Created>2025-12-10T17:34:05.4146593+02:00</Created>
    <CreatedBy>67a2011b-e11c-4788-8577-84e3d75caa52</CreatedBy>
    <DoneBy>e27d24d7-0b1a-4d43-a7fb-bbc62ef2e5ed</DoneBy>
    <DoneDate>2025-12-10T17:34:05.4146593+02:00</DoneDate>
    <DueDate>2025-12-10T17:34:05.4146593+02:00</DueDate>
    <EntityId>0bb3d150-77cd-4e3e-a82f-9f91597e63e5</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>