Developers Information - API & Web Services

API Method /user_list_organizers

This method lists the organizers created by this user. Requires authentication.

Arguments

authentication
This method controls access via optional user authentication.
user string
The user email.
password string
The user password.

Example Request

https://www.eventbrite.com/xml/user_list_organizers?...&user=abc@test.com

Output Parameters

This method returns XML with the following structure:

organizers array
Array of organizers with the following structure:

id integer
The organizer ID.
name string
The organizer name.
description string
The organizer description.
url string
The organizer URL.

Example XML Response

<?xml version="1.0" encoding="utf-8" ?>
<organizers>
	<organizer>
		<id>65739440</id>
		<name>New Year's NYC Team</name>
		<description>We organizer the best parties in town!</description>
		<url>http://www.eventbrite.com/org/65739440</url>
	</organizer>
</organizers>

Error Codes

This method may return these errors in an error document:

Request Error
The API request was not properly formed.
Application Key Error
There is a problem with the application key provided.
Authentication Error
The specified user was not found or the login credentials didn't match.
Not Found
No records were found with the given parameters.