User parameters API Resource

Abstract class for REST webservices

GET /parameters/json

Get list of all user parameters

Response Body
media type data type description
application/json object JSON with list of system parameters.

Example of response:

{"list":{"General":{"list":{"DocumentUnits":"7","HideEmptyFields":"true","ShowObjectPropertiesOnHover":"true","RasterUnits":"7","Language":"1","VersionId":"20","DrawingAutoSave":"true","VectorUnits":"7","MapUnits":"7","DrawingAutoSaveDelay":"10","Theme":"classic-blue"}}}}

PUT /parameters/resetuserparams

Response Body
media type data type description
application/json object

GET /parameters/{sectionName}/json

Get list of user parameters for chosen group

Request Parameters
name type description default constraints
sectionName path name of group of parameters ex. general.    
Response Body
media type data type description
application/json object JSON with list of system parameters.

Example of response:

{"list":{"DocumentUnits":"7","HideEmptyFields":"true","ShowObjectPropertiesOnHover":"true","RasterUnits":"7","Language":"1","VersionId":"20","DrawingAutoSave":"true","VectorUnits":"7","MapUnits":"7","DrawingAutoSaveDelay":"10","Theme":"classic-blue"}}

PUT /parameters/{sectionName}/json

Update value of user parameters. Please note that this WS couln't be used for setting versionId parameter, it will be omitted. To change versionId please use av rest.

Example of request:

{"DocumentUnits":"5","HideEmptyFields":"true","RasterUnits":"3"}

Request Parameters
name type description default constraints
sectionName path    
Request Body
media type data type
application/json string
Response Body
media type data type description
application/json object JSON Response with information, whether the saving has or has not been succeeded.