Long Description
Venue configurations are all relevant settings and meta data for a given venue. This endpoint will return a list of configurations.
NOTE: The seating_chart
image URLs within the configuration
object are deprecated and no longer updated. Instead, you should use our dynamic seating charts.
Parameters
Name | Description | Value Type | Required |
---|---|---|---|
venue_id | ID of the venue that you would like to list configurations for. | Integer | Optional |
updated_at | An ISO 8601 date time when the performer was last updated. Use in combination with the conditionals like '.gte' to get updated since. | String | Optional |
name | Name of the configuration. | String | Optional |
page | Number of pages that you want to return. | Integer | Optional |
per_page | Number of results returned per page. | Integer | Optional |
Examples
Request | Response |
---|---|
/v9/configurations | |
Paste in Request Code | { "configurations" => [ [0] { "capacity" => 66053, "fanvenues_key" => nil, "venue" => { "street_address" => "701 Convention Plaza", "country_code" => "US", "name" => "Edward Jones Dome", "id" => "1598", "url" => "/venues/1598", "location" => "Saint Louis, MO" }, "updated_at" => "2012-03-06T19:44:03Z", "ticket_utils_id" => nil, "name" => "Other", "general_admission" => false, "url" => "/configurations/3", "id" => "3", "primary" => false }, [1] { "capacity" => 65000, "fanvenues_key" => nil, "venue" => { "street_address" => "2000 Brush Street", "country_code" => "US", "name" => "Ford Field", "id" => "2199", "url" => "/venues/2199", "location" => "Detroit, MI" }, "updated_at" => "2012-03-06T19:44:03Z", "ticket_utils_id" => "0816b2c3-5bdc-4c60-aa36-da9fd059970a", "name" => "Other", "general_admission" => false, "url" => "/configurations/7", "id" => "7", "seating_chart" => { "medium" => "https://s3.amazonaws.com/media.sandbox.ticketevolution.com/configurations/static_maps/7/medium.jpg?1317044436", "large" => "https://s3.amazonaws.com/media.sandbox.ticketevolution.com/configurations/static_maps/7/large.jpg?1317044436" }, "primary" => false } ], "total_entries" => 21936, "current_page" => 1, "per_page" => 2 } |