GET v1/layers/{id}/settings?settingSystemId={settingSystemId}&settingGroup={settingGroup}
Returns a list of settings associated to a Level. The method gives you the option to choose as a parameter the System Id, or the Setting Group, but not mandatory.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
This is the level unique identifier |
string |
Required |
settingSystemId |
The SystemId is optional |
string |
None. |
settingGroup |
The SettingGroup is optional |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
A list of settings
Collection of SettingName | 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" } ]