POST ENotes/UpdateENote
Request Information
URI Parameters
None.
Body Parameters
UpdateENoteDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ENotesId | integer |
None. |
|
| Comment | string |
None. |
|
| CommentTypeId | integer |
None. |
|
| CannedCommentsId | integer |
None. |
|
| ShowId | integer |
None. |
|
| ShowAccountId | integer |
None. |
|
| BoothId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ENotesId": 1,
"Comment": "sample string 2",
"CommentTypeId": 3,
"CannedCommentsId": 4,
"ShowId": 5,
"ShowAccountId": 6,
"BoothId": 7
}
Response Information
Resource Description
ENoteUpdateResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| ResponseMessage | string |
None. |
|
| ENotes | Collection of ENoteDto |
None. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"ResponseMessage": "sample string 2",
"ENotes": [
{
"ENotesId": 1,
"ShowId": 2,
"BoothId": 3,
"CommentTypeId": 4,
"CannedCommentsId": 5,
"Comments": "sample string 6",
"CreatedBy": "sample string 7",
"TSSENotesKey": 1,
"ResolvedInd": true,
"CreatedById": 1,
"CreatedDate": "2025-11-04T18:54:37.8754511+00:00",
"IsEditable": true
},
{
"ENotesId": 1,
"ShowId": 2,
"BoothId": 3,
"CommentTypeId": 4,
"CannedCommentsId": 5,
"Comments": "sample string 6",
"CreatedBy": "sample string 7",
"TSSENotesKey": 1,
"ResolvedInd": true,
"CreatedById": 1,
"CreatedDate": "2025-11-04T18:54:37.8754511+00:00",
"IsEditable": true
}
]
}