PUT api/ConfigurationValue?systemName={systemName}&username={username}&password={password}
Updates an existing configuration value
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
systemName | string |
Required |
|
username | string |
Required |
|
password | string |
Required |
Body Parameters
APIConfigurationValueName | Description | Type | Additional information |
---|---|---|---|
Id |
Unique identifier |
integer |
None. |
Group |
Configuration group |
string |
None. |
Name |
Configuration name |
string |
None. |
Type |
Configuration type |
string |
None. |
DefaultValue |
Default value for configuration |
string |
None. |
RecommendedValue |
Recommended value for configuration |
string |
None. |
CurrentValue |
Current value for configuration |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "id": 1, "group": "sample string 2", "name": "sample string 3", "type": "sample string 4", "defaultValue": "sample string 5", "recommendedValue": "sample string 6", "currentValue": "sample string 7" }
application/xml, text/xml
Sample:
<APIConfigurationValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rochester.Models"> <CurrentValue>sample string 7</CurrentValue> <DefaultValue>sample string 5</DefaultValue> <Group>sample string 2</Group> <Id>1</Id> <Name>sample string 3</Name> <RecommendedValue>sample string 6</RecommendedValue> <Type>sample string 4</Type> </APIConfigurationValue>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.