GET api/acrservers/{serverName}/config
Retrieves configuration for a server.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
serverName |
The name of the server for the requested configuration. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
server configuration for the specified server.
ServerConfigurationName | Description | Type | Additional information |
---|---|---|---|
ServerType |
The configuration of of the specific acr server. |
ServerType |
None. |
CloudJobsLicensed |
Indicated if Cloud Job module is licened on the server. Only valid if server type is AcrCasServerLicensed. |
boolean |
None. |
CloudFilesLicensed |
Indicated if Cloud Files module is licened on the server. Only valid if server type is AcrCasServerLicensed. |
boolean |
None. |
ServerBackupLicensed |
Indicated if Server Backup module is licened on the server. Only valid if server type is AcrCasServerLicensed. |
boolean |
None. |
DeviceAccountingLicensed |
Indicated if Device Accounting module is licened on the server. Only valid if server type is AcrCasServerLicensed. |
boolean |
None. |
JobPricingLicensed |
Indicated if Job Pricing module is licened on the server. Only valid if server type is AcrCasServerLicensed. |
boolean |
None. |
QueueManagmentLicensed |
Indicated if Queue Managment module islicened on the server. Only valid if server type is AcrCasServerLicensed. |
boolean |
None. |
ShipItLicensed |
Indicated if Ship It module is licened on the server. Only valid if server type is AcrCasServerLicensed. |
boolean |
None. |
Response Formats
application/json, text/json
{ "ServerType": 0, "CloudJobsLicensed": true, "CloudFilesLicensed": true, "ServerBackupLicensed": true, "DeviceAccountingLicensed": true, "JobPricingLicensed": true, "QueueManagmentLicensed": true, "ShipItLicensed": true }
application/xml, text/xml
<ServerConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <ServerType>Unknown</ServerType> <CloudJobsLicensed>true</CloudJobsLicensed> <CloudFilesLicensed>true</CloudFilesLicensed> <ServerBackupLicensed>true</ServerBackupLicensed> <DeviceAccountingLicensed>true</DeviceAccountingLicensed> <JobPricingLicensed>true</JobPricingLicensed> <QueueManagmentLicensed>true</QueueManagmentLicensed> <ShipItLicensed>true</ShipItLicensed> </ServerConfiguration>