API Method user_new
This method creates a new user, returning the user’s ID in the response.
Request Parameters
| Name | description |
|---|---|
| The user email address. | |
| passwd | The user password. (needs to be at least 4 characters long) |
Example Request URL
https://www.eventbrite.com/xml/user_new? email=user@eventbrite.com&passwd=xxxxx
Example Response
<?xml version="1.0" encoding="utf-8" ?> <user> <id>908163459</id> <status>ok</status> <message>user_new : complete</message> <user_key>119244377060821920</user_key> </user>
Method-Specific Errors
More information about error-handling and common error messages are available in our error docs.
| error_type | error_message |
|---|---|
| Email error | The email adress is missing. |
| Email error | The email adress is invalid. |
| Email error | The email adress is already registered. |
| Password error | The password is missing. |
| Password error | Your password needs to be at least 4 characters long. |