GET api/TShowTimeEvent/bypackageRelated?movie={movie}&date={date}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| movie | integer | Required | |
| date | string | Required | 
Body Parameters
None.
Response Information
Resource Description
ShowTimeEvent| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | integer | None. | |
| StartDate | date | None. | |
| EndDate | date | None. | |
| IsFullDay | boolean | None. | |
| Movie | integer | None. | |
| Room | integer | None. | |
| Description | string | None. | |
| Price | decimal number | None. | |
| CostPerService | decimal number | None. | |
| Status | string | None. | |
| AvailableTickets | integer | None. | |
| Title | string | None. | |
| Color | string | None. | |
| Reason | string | None. | |
| EventColor | string | None. | |
| NumericSeats | boolean | None. | |
| EventDate | string | None. | |
| Start | string | None. | |
| End | string | None. | |
| Distribution | Collection of RoomSeat | None. | |
| SpecialPrice | integer | None. | |
| IsRelated | boolean | None. | |
| IsSpecial | boolean | None. | |
| Comentario | string | None. | |
| IsFree | boolean | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Id": 1,
  "StartDate": "2025-10-29T23:29:01.945891-07:00",
  "EndDate": "2025-10-29T23:29:01.945891-07:00",
  "IsFullDay": true,
  "Movie": 5,
  "Room": 6,
  "Description": "sample string 7",
  "Price": 8.0,
  "CostPerService": 9.0,
  "Status": "sample string 10",
  "AvailableTickets": 11,
  "Title": "sample string 12",
  "Color": "sample string 13",
  "Reason": "sample string 14",
  "EventColor": "sample string 15",
  "NumericSeats": true,
  "EventDate": "sample string 17",
  "Start": "sample string 18",
  "End": "sample string 19",
  "Distribution": [
    {
      "Id": 1,
      "Status": "sample string 2",
      "Row": "sample string 3",
      "SeatNumber": "sample string 4",
      "OffSet": "sample string 5",
      "Room": 6
    },
    {
      "Id": 1,
      "Status": "sample string 2",
      "Row": "sample string 3",
      "SeatNumber": "sample string 4",
      "OffSet": "sample string 5",
      "Room": 6
    }
  ],
  "SpecialPrice": 20,
  "IsRelated": true,
  "IsSpecial": true,
  "Comentario": "sample string 23",
  "IsFree": true
}
        application/xml, text/xml
            Sample:
<ShowTimeEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uniqueness.Store.Ticket.API.Models">
  <AvailableTickets>11</AvailableTickets>
  <Color>sample string 13</Color>
  <Comentario>sample string 23</Comentario>
  <CostPerService>9</CostPerService>
  <Description>sample string 7</Description>
  <Distribution>
    <RoomSeat>
      <Id>1</Id>
      <OffSet>sample string 5</OffSet>
      <Room>6</Room>
      <Row>sample string 3</Row>
      <SeatNumber>sample string 4</SeatNumber>
      <Status>sample string 2</Status>
    </RoomSeat>
    <RoomSeat>
      <Id>1</Id>
      <OffSet>sample string 5</OffSet>
      <Room>6</Room>
      <Row>sample string 3</Row>
      <SeatNumber>sample string 4</SeatNumber>
      <Status>sample string 2</Status>
    </RoomSeat>
  </Distribution>
  <End>sample string 19</End>
  <EndDate>2025-10-29T23:29:01.945891-07:00</EndDate>
  <EventColor>sample string 15</EventColor>
  <EventDate>sample string 17</EventDate>
  <Id>1</Id>
  <IsFree>true</IsFree>
  <IsFullDay>true</IsFullDay>
  <IsRelated>true</IsRelated>
  <IsSpecial>true</IsSpecial>
  <Movie>5</Movie>
  <NumericSeats>true</NumericSeats>
  <Price>8</Price>
  <Reason>sample string 14</Reason>
  <Room>6</Room>
  <SpecialPrice>20</SpecialPrice>
  <Start>sample string 18</Start>
  <StartDate>2025-10-29T23:29:01.945891-07:00</StartDate>
  <Status>sample string 10</Status>
  <Title>sample string 12</Title>
</ShowTimeEvent>