GET ItemNote/Get/{id}
Gets the specified Item Note based on the identifier.
Request Information
URI Parameters
| Name | Type | Additional information | Description |
|---|---|---|---|
| id | integer |
Required |
The Item Note identifier. |
Body Parameters
None.
Response Information
Resource Description
Item Note| Name | Type | Additional information | Description |
|---|---|---|---|
| ID | integer |
Required |
|
| Subject | string |
Required String length: inclusive between 0 and 100 |
|
| EntryDate | nullable date |
None. |
|
| ActionDate | date |
Required |
|
| Status | nullable bool |
None. |
|
| Note | string |
None. |
|
| HasAttachments | nullable bool |
None. |
|
| ItemId | integer |
None. |
|
| Priority | nullable integer |
None. |
|
| UserTaskCategoryId | nullable integer |
None. |
|
| NotifyAssignee | nullable bool |
None. |
Response Formats
application/json, text/json
Sample:
{
"ItemId": 1,
"Priority": 1,
"UserTaskCategoryId": 1,
"NotifyAssignee": true,
"ID": 2,
"Subject": "sample string 3",
"EntryDate": "2025-12-17",
"ActionDate": "2025-12-17",
"Status": true,
"Note": "sample string 4",
"HasAttachments": true
}