GET attendees/getAll
Returns a list of attendees
URL:
http://mobileroadie.com/api/attendees/getAll
Formats
XML, JSON, HTML
HTTP Method(s):
GET
Parameters:
-
api_key
-
Required
-
-
offset
-
For pagination. Default is set to 0.
-
-
limit
-
Limit the number of results returned. Default is 50.
-
Usage Example
http://mobileroadie.com/api/attendees/getAll/key/4d4ba30d73b77f7/limit/10/format/xml
Code Example
<?php $handle = curl_init("https://mobileroadie.com/api/attendees/getAll/key/4d4ba30d73b77f7/limit/10/format/xml"); curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_ANY); $response = curl_exec($handle); curl_close($handle); ?>
Example XML Response
<xml> <item> <id>17346</id> <firstname>John</firstname> <lastname>Doe</lastname> <twitter>n200_com</twitter> <country>US</country> <company>N200</company> <thumbnail>http://is.gd/7Y12R</thumbnail> <created>0000-00-00 00:00:00</created> <viacsv>0</viacsv> <category_id>0</category_id> </item> </xml>
Comments
0 comments
Please sign in to leave a comment.