DELETE api/TCanceledShow/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

TCanceledShow
NameDescriptionTypeAdditional information
ShowEventId

integer

None.

Reason

string

Required

Status

string

Required

String length: inclusive between 0 and 10

Schedule

boolean

None.

Room

boolean

None.

Canceled

boolean

None.

EditedDate

date

None.

Subject

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ShowEventId": 1,
  "Reason": "sample string 2",
  "Status": "sample string 3",
  "Schedule": true,
  "Room": true,
  "Canceled": true,
  "EditedDate": "2024-11-13T20:31:59.5735092-08:00",
  "Subject": "sample string 8"
}

application/xml, text/xml

Sample:
<TCanceledShow xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uniqueness.Store.Ticket.API.DataBase">
  <Canceled>true</Canceled>
  <EditedDate>2024-11-13T20:31:59.5735092-08:00</EditedDate>
  <Reason>sample string 2</Reason>
  <Room>true</Room>
  <Schedule>true</Schedule>
  <ShowEventId>1</ShowEventId>
  <Status>sample string 3</Status>
  <Subject>sample string 8</Subject>
</TCanceledShow>