GET api/Config/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
GlobalConfigModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ServerUrl | string |
None. |
|
| AllowServerAddressOverride | boolean |
None. |
|
| ShipclientEnabled | boolean |
None. |
|
| AutosynchronizeOnStartAndEndOfClient | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ServerUrl": "sample string 1",
"AllowServerAddressOverride": true,
"ShipclientEnabled": true,
"AutosynchronizeOnStartAndEndOfClient": true
}
application/xml, text/xml
Sample:
<GlobalConfigModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChemServe3DWebApiModels"> <AllowServerAddressOverride>true</AllowServerAddressOverride> <AutosynchronizeOnStartAndEndOfClient>true</AutosynchronizeOnStartAndEndOfClient> <ServerUrl>sample string 1</ServerUrl> <ShipclientEnabled>true</ShipclientEnabled> </GlobalConfigModel>