GET OnteGroupStudents

Request Information

URI Parameters

None.

Body Parameters

OnteGroupStudentsRequest
NameDescriptionTypeAdditional information
OnteAuthKey

string

None.

GroupId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "OnteAuthKey": "sample string 1",
  "GroupId": 2
}

application/xml, text/xml

Sample:
<OnteGroupStudentsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iSAPS.API.Models">
  <GroupId>2</GroupId>
  <OnteAuthKey>sample string 1</OnteAuthKey>
</OnteGroupStudentsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

OnteGroupStudentsResponse
NameDescriptionTypeAdditional information
Students

Collection of OnteStudent

None.

Response Formats

application/json, text/json

Sample:
{
  "Students": [
    {
      "Id": 1,
      "Album": 1,
      "Name": "sample string 2",
      "Status": "sample string 3"
    },
    {
      "Id": 1,
      "Album": 1,
      "Name": "sample string 2",
      "Status": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<OnteGroupStudentsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iSAPS.API.Models">
  <Students>
    <OnteStudent>
      <Album>1</Album>
      <Id>1</Id>
      <Name>sample string 2</Name>
      <Status>sample string 3</Status>
    </OnteStudent>
    <OnteStudent>
      <Album>1</Album>
      <Id>1</Id>
      <Name>sample string 2</Name>
      <Status>sample string 3</Status>
    </OnteStudent>
  </Students>
</OnteGroupStudentsResponse>