Update an existing user
URL
https://api.zoomrank.com/users/:id.xml
Supported formats
xml, json
Supported request methods
PUT
Example
Updates user with ZoomRank ID 1.
https://api.zoomrank.com/users/1.xml
Arguments
Argument | Description |
---|---|
user | The updated user record sent in the request body. |
Considerations
- Plan must be a valid plan for your group. See Plans.
- Username can be changed by providing it in the resource XML; 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
- 200 - Success
- 400 - Bad Request (Errors occurred while updating - See response body)
- 404 - No record found
Example Request Body
<user> <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_frequency>none</rank_email_frequency> <rank_email_recipient>jane@doe.com</rank_email_recipient> <phone>123-123-1234</phone> </user>