POST classroomAPI/Portal/SaveSettings

Request Information

URI Parameters

None.

Body Parameters

Collection of Setting
NameDescriptionTypeAdditional 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.

Request 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>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>