GET api/Venue/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Venue| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| VenueCode | string |
None. |
|
| VenueName | string |
None. |
|
| VenueCapacity | integer |
None. |
|
| MaxDisabilitySeating | integer |
None. |
|
| PhysicalLocation | string |
None. |
|
| OrderId | integer |
None. |
|
| StubLocation | string |
None. |
|
| VenueGroupId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"VenueCode": "sample string 1",
"VenueName": "sample string 2",
"VenueCapacity": 1,
"MaxDisabilitySeating": 1,
"PhysicalLocation": "sample string 3",
"OrderId": 1,
"StubLocation": "sample string 4",
"VenueGroupId": 1
}
application/xml, text/xml
Sample:
<Venue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VersaiAPI.Business"> <Id>1</Id> <MaxDisabilitySeating>1</MaxDisabilitySeating> <OrderId>1</OrderId> <PhysicalLocation>sample string 3</PhysicalLocation> <StubLocation>sample string 4</StubLocation> <VenueCapacity>1</VenueCapacity> <VenueCode>sample string 1</VenueCode> <VenueGroupId>1</VenueGroupId> <VenueName>sample string 2</VenueName> </Venue>