FRAMES | NO FRAMES Description | Parameters | Example
URL:http://server:port/arcgis/admin/security/users/update
HTTP Method:POST
Parent Resource:Users
Required Privileges:Administrator

Description

Updates a user account in the user store with new information. This operation is available only when the user store is a read-write store such as the default ArcGIS Server store.

Parameters

Parameter Description
username The name of the user. The name must be unique in the user store.
password The password of the user
fullname An optional full name for the user
description An optional field to add comments or a description for the user account
email An optional e-mail address for the user account
f The response format. The default response format is html.
Values: html | json

The above parameters can also be provided in JSON format and submitted as a value to the user parameter.

	user={
		"username":"<username>",
                "password":"<password>",			
		"fullname":"<fullname>",			
		"description":"<description>",			
		"email":"<email>",			
	}
			

Example

	http://server:port/arcgis/admin/security/users/update
	username=jwhite
        password=secret
	fullname=Jill White
	description=A platinum customer for 10 years
	email=jwhite@email.com