POST ENotes/DeleteEnote/{eNotesId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eNotesId

integer

Required

Body Parameters

GetENoteDto
NameDescriptionTypeAdditional information
ShowId

integer

None.

ShowAccountId

integer

None.

BoothId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ShowId": 1,
  "ShowAccountId": 2,
  "BoothId": 3
}

Response Information

Resource Description

ENoteDeleteResponse
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:41:06.7676384+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:41:06.7676384+01:00",
      "IsEditable": true
    }
  ]
}