| FRAMES | NO FRAMES | Description | Parameters | Example |
| URL: | http://server:port/arcgis/admin/security/users/add |
|---|---|
| HTTP Method: | POST |
| Parent Resource: | Users |
| Required Privileges: | Administrator |
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.
| 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. |
| 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>"
}
http://server:port/arcgis/admin/security/users/add username=jwhite password=secret fullname=John White description=A platinum customer email=jwhite@email.com