This will return the details for the requested venue.
Parameters
appKey
string
A key identifying the application making the call
userKey
string
A key identifying the user making the call
corpOrgID
int
The corp organization id under which the venue exists
venueOrgID
int
optional
The lower level folder/organization id under which the venue exists
venueID
int
The id of the venue requested
Return Values
A venue data structure with the following fields
ID
int
The ID of the Venue
OrgID
int
The organization id that the venue is under
Name
string
The name of the venue
InternalName
string
The internal name of the venue
ShortName
string
A short name for the venue
Address1
string
The street address of the venue
Address2
string
Additional venue street address if needed.
City
string
The city of the venue
State
string
The state of the venue (Specified as two letter state representation)
Zip
string
The zipcode of the venue
Errors
ApplicationKeyMissing
1000
Required parameter appkey is missing or invalid
UserCredentialsMissing
1001
Required user credentials are missing or invalid
SecurityInsufficient
1002
User security does not permit access to the requested function
RequestedVenueNotFound
1003
Requested venue not found
Example Request
https://prod1.agileticketing.net/api/admin.svc/json/VenueGet?appkey={APPKEY}&userkey={USERKEY}&corporgid={CORPORGID}&venueorgid={VENUEORGID}&venueid={VENUEID}
Example JSON Response
{ "ID":2147483647, "OrgID":2147483647, "Name":"String content", "InternalName":"String content", "ShortName":"String content", "Address1":"String content", "Address2":"String content", "City":"String content", "State":"String content", "Zip":"String content" }
Example XML Response
<Venue xmlns="http://www.agiletix.com/api"> <ID>2147483647</ID> <OrgID>2147483647</OrgID> <Name>String content</Name> <InternalName>String content</InternalName> <ShortName>String content</ShortName> <Address1>String content</Address1> <Address2>String content</Address2> <City>String content</City> <State>String content</State> <Zip>String content</Zip> </Venue>
Comments