GET classroomAPI/Portal/getGroupSettingsByReference?groupID={groupID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Setting| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| ObjectID | integer |
None. |
|
| Level | integer |
None. |
|
| Name | string |
None. |
|
| Value | string |
None. |
|
| GroupID | integer |
None. |
|
| Type | string |
None. |
|
| Label | string |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"ObjectID": 1,
"Level": 2,
"Name": "sample string 3",
"Value": "sample string 4",
"GroupID": 5,
"Type": "sample string 6",
"Label": "sample string 7",
"Description": "sample string 8"
},
{
"ID": 1,
"ObjectID": 1,
"Level": 2,
"Name": "sample string 3",
"Value": "sample string 4",
"GroupID": 5,
"Type": "sample string 6",
"Label": "sample string 7",
"Description": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfSetting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classroom.ClassroomBLL">
<Setting>
<Description>sample string 8</Description>
<GroupID>5</GroupID>
<ID>1</ID>
<Label>sample string 7</Label>
<Level>2</Level>
<Name>sample string 3</Name>
<ObjectID>1</ObjectID>
<Type>sample string 6</Type>
<Value>sample string 4</Value>
</Setting>
<Setting>
<Description>sample string 8</Description>
<GroupID>5</GroupID>
<ID>1</ID>
<Label>sample string 7</Label>
<Level>2</Level>
<Name>sample string 3</Name>
<ObjectID>1</ObjectID>
<Type>sample string 6</Type>
<Value>sample string 4</Value>
</Setting>
</ArrayOfSetting>