Venue ID API: Venue Methods: get

Purpose

This method allows any user to get the details of an active venue. Use get_pending to get the details of a pending venue. The user must supply a valid venue_id.

The submit_user output field will only be shown if the querying user is an admin user.

URLs

Live: http://api.ives.info/rest/venues/get

Input

Required Arguments
user_email For authentication
user_password For authentication
venue_id Venue ID code

Sample Request
http://api.ives.info/rest/venues/get?user_email=user@domain.com&user_password=fak3passw0rd&venue_id=http://ives.info/gb/4d5rr

Output

Errors will be returned in the form of an error document.

Sample XML Output
<?xml version="1.0" encoding="UTF-8"?>
<venue id="http://ives.info/gb/4d5rr">
  <venue_name>Electric Ballroom</venue_name>
  <alt_names></alt_names>
  <previous_names></previous_names>
  <address>184 Camden High Street</address1>
  <town>London</town>
  <region></region>
  <country_code>GB</country_code>
  <postal_code>NW1 8QP</postal_code>
  <latitude>51.5397</latitude>
  <longitude>-0.143</longitude>
  <submit_user>user@domain.com</submit_user>
</venue>