GET api/EventTableConfigurations
List all EventTableConfiguration
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ListEventTableConfigurationName | Description | Type | Additional information |
---|---|---|---|
EventTableConfigurationId | integer |
None. |
|
EventId | integer |
None. |
|
VenueId | integer |
None. |
|
Tables | string |
None. |
|
VenueName | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "EventTableConfigurationId": 1, "EventId": 2, "VenueId": 3, "Tables": "sample string 4", "VenueName": "sample string 5" }, { "EventTableConfigurationId": 1, "EventId": 2, "VenueId": 3, "Tables": "sample string 4", "VenueName": "sample string 5" } ]
application/xml, text/xml
Sample:
<ArrayOfListEventTableConfiguration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers"> <ListEventTableConfiguration> <EventId>2</EventId> <EventTableConfigurationId>1</EventTableConfigurationId> <Tables>sample string 4</Tables> <VenueId>3</VenueId> <VenueName>sample string 5</VenueName> </ListEventTableConfiguration> <ListEventTableConfiguration> <EventId>2</EventId> <EventTableConfigurationId>1</EventTableConfigurationId> <Tables>sample string 4</Tables> <VenueId>3</VenueId> <VenueName>sample string 5</VenueName> </ListEventTableConfiguration> </ArrayOfListEventTableConfiguration>