GET api/appconfigs/{appShortName}/{companyShortName}/{build}
Get configuration parameters for an app.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appShortName |
Application short name |
string |
Required |
| companyShortName |
Company short name |
string |
Required |
| build |
Build number of app. Different builds can have different configs. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The configuration parameters for the specified app, company and build.
AppConfig| Name | Description | Type | Additional information |
|---|---|---|---|
| Settings | Dictionary of string [key] and string [value] |
None. |
|
| Texts | Dictionary of string [key] and string [value] |
None. |
Response Formats
application/json, text/json
Sample:
{
"Settings": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"Texts": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
}
}