GET api/TCanceledShowOrder/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
TCanceledShowOrder| Name | Description | Type | Additional information | 
|---|---|---|---|
| OrderId | integer | None. | |
| ShowEventId | integer | None. | |
| ClientEmail | string | Required String length: inclusive between 0 and 100 | |
| ClientPhone | string | Required String length: inclusive between 0 and 100 | |
| Token | string | Required String length: inclusive between 0 and 256 | |
| TokenRedeemed | boolean | None. | |
| Notified | boolean | None. | |
| MovieId | integer | None. | |
| Tickets | integer | None. | |
| OrderResume | string | Required String length: inclusive between 0 and 100 | 
Response Formats
application/json, text/json
            Sample:
        
{
  "OrderId": 1,
  "ShowEventId": 2,
  "ClientEmail": "sample string 3",
  "ClientPhone": "sample string 4",
  "Token": "sample string 5",
  "TokenRedeemed": true,
  "Notified": true,
  "MovieId": 8,
  "Tickets": 9,
  "OrderResume": "sample string 10"
}
        application/xml, text/xml
            Sample:
<TCanceledShowOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uniqueness.Store.Ticket.API.DataBase"> <ClientEmail>sample string 3</ClientEmail> <ClientPhone>sample string 4</ClientPhone> <MovieId>8</MovieId> <Notified>true</Notified> <OrderId>1</OrderId> <OrderResume>sample string 10</OrderResume> <ShowEventId>2</ShowEventId> <Tickets>9</Tickets> <Token>sample string 5</Token> <TokenRedeemed>true</TokenRedeemed> </TCanceledShowOrder>