GET ticket/room

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Room
NameDescriptionTypeAdditional information
roomId

integer

None.

name

string

None.

SvgWidth

integer

None.

SvgHeight

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "roomId": 1,
    "name": "sample string 2",
    "SvgWidth": 3,
    "SvgHeight": 4
  },
  {
    "roomId": 1,
    "name": "sample string 2",
    "SvgWidth": 3,
    "SvgHeight": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfRoom xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models">
  <Room>
    <SvgHeight>4</SvgHeight>
    <SvgWidth>3</SvgWidth>
    <name>sample string 2</name>
    <roomId>1</roomId>
  </Room>
  <Room>
    <SvgHeight>4</SvgHeight>
    <SvgWidth>3</SvgWidth>
    <name>sample string 2</name>
    <roomId>1</roomId>
  </Room>
</ArrayOfRoom>