GET api/Venue?venuegroupid={venuegroupid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| venuegroupid | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of 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. |
|
| ScanConfig | VenueScanConfig |
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,
"ScanConfig": {
"Id": 1,
"EarlyEntryMin": 2,
"LateEntryMin": 3,
"Override": true
}
},
{
"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,
"ScanConfig": {
"Id": 1,
"EarlyEntryMin": 2,
"LateEntryMin": 3,
"Override": true
}
}
]
application/xml, text/xml
Sample:
<ArrayOfVenue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VersaiAPI.Business">
<Venue>
<Id>1</Id>
<MaxDisabilitySeating>1</MaxDisabilitySeating>
<OrderId>1</OrderId>
<PhysicalLocation>sample string 3</PhysicalLocation>
<ScanConfig>
<EarlyEntryMin>2</EarlyEntryMin>
<Id>1</Id>
<LateEntryMin>3</LateEntryMin>
<Override>true</Override>
</ScanConfig>
<StubLocation>sample string 4</StubLocation>
<VenueCapacity>1</VenueCapacity>
<VenueCode>sample string 1</VenueCode>
<VenueGroupId>1</VenueGroupId>
<VenueName>sample string 2</VenueName>
</Venue>
<Venue>
<Id>1</Id>
<MaxDisabilitySeating>1</MaxDisabilitySeating>
<OrderId>1</OrderId>
<PhysicalLocation>sample string 3</PhysicalLocation>
<ScanConfig>
<EarlyEntryMin>2</EarlyEntryMin>
<Id>1</Id>
<LateEntryMin>3</LateEntryMin>
<Override>true</Override>
</ScanConfig>
<StubLocation>sample string 4</StubLocation>
<VenueCapacity>1</VenueCapacity>
<VenueCode>sample string 1</VenueCode>
<VenueGroupId>1</VenueGroupId>
<VenueName>sample string 2</VenueName>
</Venue>
</ArrayOfVenue>