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

Description

Add a user account to the user store. This operation is available only when the user store is a read-write store such as the default ArcGIS Server store.

If the name of the user exists in the user store, an error will be returned.

Parameters

Parameter Description
username The name of the user. The name must be unique in the user store.
password The password for this user.
fullname An optional full name for the user.
description An optional field to add comments or description for the user account.
email An optional email 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/add
	username=jwhite
	password=secret
	fullname=John White
	description=A platinum customer
	email=jwhite@email.com