user/update
Parameters:
p1: partition username
p2: desired user’s username
p3: name=value pairs
Return Type:
Boolean (true or false)
Description:
Updates an existing user from specified account. Returns true if user was updated, or false if it failed (or if user does not exist).
The p3 parameter uses the sane name=value pair format as described in the user__add function. They should be separated by a two pipe characters (||), and each pair looks like this: name=value where name is the row name (like address, or first_name for example), and value is the value for that row.
For example, to update a user’s first name and last name, p3 will look like this: first_name=Bob||last_name=Jones
Here are the possible name values you can use for the name=value pairs along with their size limits:
first_name (100), last_name (100), email (80), middle_init (1), date_start (8), date_expire (8), company (255), address (255), city (100), state (4), zip (10), phone (20), custom1 (255), custom2 (255), custom3 (255), custom4 (255), custom5 (255), custom6 (255), custom7 (255), custom8 (255), custom9 (255), custom10 (255), custom11 (255), custom12 (255), custom13 (255), custom14 (255), custom15 (255)
Note: p2 (username) can be up to 40 characters.