POST api/TRelatedShow
Request Information
URI Parameters
None.
Body Parameters
TRelatedShow| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | integer | None. | |
| Movie | integer | None. | |
| ShowTimeEvent | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "Id": 1,
  "Movie": 2,
  "ShowTimeEvent": 3
}
        application/xml, text/xml
            Sample:
        <TRelatedShow xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uniqueness.Store.Ticket.API.Models"> <Id>1</Id> <Movie>2</Movie> <ShowTimeEvent>3</ShowTimeEvent> </TRelatedShow>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
RelatedShow| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | integer | None. | |
| Movie | integer | None. | |
| ShowTimeEvent | integer | None. | |
| ShowTimeEventResume | string | None. | |
| Title | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Id": 1,
  "Movie": 2,
  "ShowTimeEvent": 3,
  "ShowTimeEventResume": "sample string 4",
  "Title": "sample string 5"
}
        application/xml, text/xml
            Sample:
<RelatedShow xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uniqueness.Store.Ticket.API.Models"> <Id>1</Id> <Movie>2</Movie> <ShowTimeEvent>3</ShowTimeEvent> <ShowTimeEventResume>sample string 4</ShowTimeEventResume> <Title>sample string 5</Title> </RelatedShow>