GET v1/application/{environment}/{orgId}/{appId}/settings
Returns all application settings.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| environment |
MaaS Environment where org and app ids are found. |
string |
Required |
| orgId |
MaaS Organization unique identifier. |
integer |
Required |
| appId |
MaaS App Id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns a collection of settings for the provided application.
Collection of Setting| Name | Description | Type | Additional information |
|---|---|---|---|
| systemId |
Setting internal identifier, most systems using |
string |
None. |
| group |
Property group, note that not all settings storage like company settings support groups yet. Groups are available for Applications, Properties and Users only. |
string |
None. |
| id |
Setting unique identifier. |
string |
None. |
| name |
Setting display name. |
string |
None. |
| value |
Setting value stored. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"systemId": "sample string 1",
"group": "sample string 2",
"id": "sample string 3",
"name": "sample string 4",
"value": "sample string 5"
},
{
"systemId": "sample string 1",
"group": "sample string 2",
"id": "sample string 3",
"name": "sample string 4",
"value": "sample string 5"
}
]
