POST ENotes/UpdateENote

Request Information

URI Parameters

None.

Body Parameters

UpdateENoteDto
NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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-05-06T01:56:53.2906252+01: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-05-06T01:56:53.2906252+01:00",
      "IsEditable": true
    }
  ]
}