GET AssetNote/Get/{id}
Gets the specified Asset Note based on the identifier.
Request Information
URI Parameters
| Name | Type | Additional information | Description |
|---|---|---|---|
| id | integer |
Required |
The Asset Note ID. |
Body Parameters
None.
Response Information
Resource Description
Asset 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. |
|
| AssetId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"AssetId": 1,
"ID": 2,
"Subject": "sample string 3",
"EntryDate": "2025-10-29",
"ActionDate": "2025-10-29",
"Status": true,
"Note": "sample string 4",
"HasAttachments": true
}