Developers Information - API & Web Services
API Method /user_new
This method creates a new user. It returns the ID of the newly created user.
Arguments
- email string
- The user email address.
- passwdstring
- The user password.
Example Request
https://www.eventbrite.com/xml/user_new?
email=user@eventbrite.com&passwd=xxxxx
Output Parameters
This method returns XML with the following structure:
- id integer
- The user ID.
- status string
- Processing status.
- message string
- Processing message.
- user_key string
- API user key.
Example XML Response
<?xml version="1.0" encoding="utf-8" ?> <user> <id>908163459</id> <status>ok</status> <message>Add user complete</message> <user_key>119244377060821920</user_key> </user>
Error Codes
This method may return these errors in an error document:
- Email error
- The email adress is missing, invalid or already registered.
- Password error
- The password is missing or invalid.