PUT api/PutByRange

Request Information

URI Parameters

None.

Body Parameters

Collection of TRoomSeat
NameDescriptionTypeAdditional information
Id

integer

None.

Row

string

Required

String length: inclusive between 0 and 10

Status

string

Required

String length: inclusive between 0 and 30

Offset

string

String length: inclusive between 0 and 50

Room

integer

None.

SeatNumber

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Row": "sample string 2",
    "Status": "sample string 3",
    "Offset": "sample string 4",
    "Room": 5,
    "SeatNumber": "sample string 6"
  },
  {
    "Id": 1,
    "Row": "sample string 2",
    "Status": "sample string 3",
    "Offset": "sample string 4",
    "Room": 5,
    "SeatNumber": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTRoomSeat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uniqueness.Store.Ticket.API.Models">
  <TRoomSeat>
    <Id>1</Id>
    <Offset>sample string 4</Offset>
    <Room>5</Room>
    <Row>sample string 2</Row>
    <SeatNumber>sample string 6</SeatNumber>
    <Status>sample string 3</Status>
  </TRoomSeat>
  <TRoomSeat>
    <Id>1</Id>
    <Offset>sample string 4</Offset>
    <Room>5</Room>
    <Row>sample string 2</Row>
    <SeatNumber>sample string 6</SeatNumber>
    <Status>sample string 3</Status>
  </TRoomSeat>
</ArrayOfTRoomSeat>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

TRoomSeat
NameDescriptionTypeAdditional information
Id

integer

None.

Row

string

Required

String length: inclusive between 0 and 10

Status

string

Required

String length: inclusive between 0 and 30

Offset

string

String length: inclusive between 0 and 50

Room

integer

None.

SeatNumber

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Row": "sample string 2",
  "Status": "sample string 3",
  "Offset": "sample string 4",
  "Room": 5,
  "SeatNumber": "sample string 6"
}

application/xml, text/xml

Sample:
<TRoomSeat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uniqueness.Store.Ticket.API.Models">
  <Id>1</Id>
  <Offset>sample string 4</Offset>
  <Room>5</Room>
  <Row>sample string 2</Row>
  <SeatNumber>sample string 6</SeatNumber>
  <Status>sample string 3</Status>
</TRoomSeat>