Abstract class for REST webservices
Get list of all user parameters
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"}}}}
|
media type | data type | description |
---|---|---|
application/json | object |
Get list of user parameters for chosen group
name | type | description | default | constraints |
---|---|---|---|---|
sectionName | path | name of group of parameters ex. general. |
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"}}
|
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"}
name | type | description | default | constraints |
---|---|---|---|---|
sectionName | path |
media type | data type |
---|---|
application/json | string |
media type | data type | description |
---|---|---|
application/json | object | JSON Response with information, whether the saving has or has not been succeeded. |