GET CAWS/StudentMarks

This request returns a collection of simple student marks that fulfill filtering criteria passed in the AwsMarkFilterPoco json object.

Response Information

IEnumerable generic collection of the SimpleStudentMarkPoco objects representing student marks.

Response body formats

application/json, text/json

Sample:
[
  {
    "StudentId": 1,
    "EventId": 2,
    "Week": 3,
    "MarkId": 4,
    "MinsLate": 5,
    "Source": "sample string 6"
  },
  {
    "StudentId": 1,
    "EventId": 2,
    "Week": 3,
    "MarkId": 4,
    "MinsLate": 5,
    "Source": "sample string 6"
  },
  {
    "StudentId": 1,
    "EventId": 2,
    "Week": 3,
    "MarkId": 4,
    "MinsLate": 5,
    "Source": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSimpleStudentMarkPoco xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Celcat.Models">
  <SimpleStudentMarkPoco>
    <EventId>2</EventId>
    <MarkId>4</MarkId>
    <MinsLate>5</MinsLate>
    <Source>sample string 6</Source>
    <StudentId>1</StudentId>
    <Week>3</Week>
  </SimpleStudentMarkPoco>
  <SimpleStudentMarkPoco>
    <EventId>2</EventId>
    <MarkId>4</MarkId>
    <MinsLate>5</MinsLate>
    <Source>sample string 6</Source>
    <StudentId>1</StudentId>
    <Week>3</Week>
  </SimpleStudentMarkPoco>
  <SimpleStudentMarkPoco>
    <EventId>2</EventId>
    <MarkId>4</MarkId>
    <MinsLate>5</MinsLate>
    <Source>sample string 6</Source>
    <StudentId>1</StudentId>
    <Week>3</Week>
  </SimpleStudentMarkPoco>
</ArrayOfSimpleStudentMarkPoco>