API Method /groups/users/list
This function returns a list of members associated with a group. See http://eventful.com/groups/G0-001-000001237-8/members for an example interface.
Arguments
- authentication
- This method controls access via optional user authentication.
- id string
- The group ID.
Example Request
Here's an example URL:
http://api.evdb.com/rest/groups/users/list?...&id=G0-001-000001237-8
Output Parameters
Output from this function is an XML block with the following constructs:
- users
- A list of members. Each user entry has the following structure:
- username string
- The user's username. (Useful for URLs, e.g. http://eventful.com/users/brian.)
- bio string
- The user's bio, as found on his/her profile page.
Example XML Response
<?xml version="1.0" encoding="UTF-8"?>
<users>
<user>
<username>sdultimate</username>
<bio>Product manager and one of your gracious hosts here at Eventful. </bio>
</user>
...
</users>
Error Codes
This method may return these errors in an error document:
- Authentication error
- The specified user was not found or provided invalid credentials.
- Missing parameter
- The 'id' parameter is mandatory.
- Not found
- There is no group with that identifier.
- Access denied
- User 'username' does not have permission to view group 'id'
-