DELETE api/TCanceledShow/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
TCanceledShow| Name | Description | Type | Additional 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": "2025-10-29T23:32:40.0791861-07: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>2025-10-29T23:32:40.0791861-07: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>