GET showsgoing/getAll
Returns a list users that will be attending a Show
URL:
http://mobileroadie.com/api/showsgoing/getAll
Formats
XML, JSON, HTML
HTTP Method(s):
GET
Parameters:
-
api_key
-
Required
-
-
show_id
-
To limit results to a particular show.
-
-
offset
-
For pagination. Default is set to 0.
-
-
limit
-
Limit the number of results returned. Default is 50.
-
-
Direction
-
Defaults to 'ASC'. Use 'DESC' for descending values by date, 'ASC' for ascending values by date.
-
Usage Example
Code Example
<?php $handle = curl_init("https://mobileroadie.com/api/showsgoing/getAll/key/4d4ba30d73b77f7/show_id/4862/limit/10/direction/asc/format/xml"); curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_ANY); $response = curl_exec($handle); curl_close($handle); ?>
Example XML Response
<?xml version="1.0" encoding="utf-8"?> <xml> <item> <id>5132</id> <show_id>4862</show_id> <device_id>153750</device_id> <profile_image>http://dv1.mblrd.com/i/50-50/c/aHR0cDovL2ExLnR3aW1nLmNvbS9wcm9maWxlX2ltYWdlcy82NzQ5NTU5MzYvc3RldmVQb2xhMjJfbm9ybWFsLnBuZw,,</profile_image> <nickname>sfschroeder</nickname> </item> </xml>
Comments
0 comments
Please sign in to leave a comment.