Create a user
URL
https://api.zoomrank.com/users.xml
Supported formats
xml, json
Supported request methods
POST
Example
Create a new user.
https://api.zoomrank.com/users.xml
Arguments
Argument | Description |
---|---|
user | The new user record sent in the request body. |
Considerations
- Username must be unique.
- Timezone will default to "America/Chicago."
- Rank email frequency options are: none, daily, weekly and monthly.
- Multiple ranking email recipients can be specified using a comma-separator.
Response Codes
- 201 - Success (Created)
- 400 - Bad Request (Errors occurred while creating record - See response body)
- 500 - Internal Server Error (Something bad happened, let us know!)
Example Request Body
<user> <plan_id>1</plan_id> <username>john@doe.com</username> <password>secret</password> <external_id>EXTID1</external_id> <first_name>John</first_name> <last_name>Doe</last_name> <company>John Doe Inc.</company> <email>marketing@doe.com</email> <rank_email_recipient>jane@doe.com,john@doe.com</rank_email_recipient> <phone>123-123-1234</phone> </user>