GET api/TCanceledShow
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of 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:46:11.7073607-07:00",
    "Subject": "sample string 8"
  },
  {
    "ShowEventId": 1,
    "Reason": "sample string 2",
    "Status": "sample string 3",
    "Schedule": true,
    "Room": true,
    "Canceled": true,
    "EditedDate": "2025-10-29T23:46:11.7073607-07:00",
    "Subject": "sample string 8"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfTCanceledShow xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uniqueness.Store.Ticket.API.DataBase">
  <TCanceledShow>
    <Canceled>true</Canceled>
    <EditedDate>2025-10-29T23:46:11.7073607-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>
  <TCanceledShow>
    <Canceled>true</Canceled>
    <EditedDate>2025-10-29T23:46:11.7073607-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>
</ArrayOfTCanceledShow>