GET apioauth/matrixv2/iotsetting/{groupId}
Get IOT group settings
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
groupId |
The group id queried |
unsigned integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A IOTSettingResponse
IOTSettingResponseName | Description | Type | Additional information |
---|---|---|---|
IOTSettings |
A collection of settings |
Collection of IOTSetting |
None. |
Response Formats
application/json, text/json
Sample:
{ "IOTSettings": [ { "IOTSettingType": 0, "Id": 1, "Value": "sample string 2" }, { "IOTSettingType": 0, "Id": 1, "Value": "sample string 2" } ] }
application/xml, text/xml
Sample:
<IOTSettingResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <IOTSettings> <IOTSetting> <IOTSettingType>Region</IOTSettingType> <Id>1</Id> <Value>sample string 2</Value> </IOTSetting> <IOTSetting> <IOTSettingType>Region</IOTSettingType> <Id>1</Id> <Value>sample string 2</Value> </IOTSetting> </IOTSettings> </IOTSettingResponse>