GET CAWS/StudentTimesInOut

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

Response Information

IEnumerable generic collection of the SimpleStudentTimesPoco objects representing student time in out marks.

Response body formats

application/json, text/json

Sample:
[
  {
    "StudentId": 1,
    "EventId": 2,
    "Week": 3,
    "InTime": "2026-01-09T15:26:52.5347392+00:00",
    "OutTime": "2026-01-09T15:26:52.5347392+00:00"
  },
  {
    "StudentId": 1,
    "EventId": 2,
    "Week": 3,
    "InTime": "2026-01-09T15:26:52.5347392+00:00",
    "OutTime": "2026-01-09T15:26:52.5347392+00:00"
  },
  {
    "StudentId": 1,
    "EventId": 2,
    "Week": 3,
    "InTime": "2026-01-09T15:26:52.5347392+00:00",
    "OutTime": "2026-01-09T15:26:52.5347392+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSimpleStudentTimesPoco xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Celcat.Models">
  <SimpleStudentTimesPoco>
    <EventId>2</EventId>
    <InTime>2026-01-09T15:26:52.5347392+00:00</InTime>
    <OutTime>2026-01-09T15:26:52.5347392+00:00</OutTime>
    <StudentId>1</StudentId>
    <Week>3</Week>
  </SimpleStudentTimesPoco>
  <SimpleStudentTimesPoco>
    <EventId>2</EventId>
    <InTime>2026-01-09T15:26:52.5347392+00:00</InTime>
    <OutTime>2026-01-09T15:26:52.5347392+00:00</OutTime>
    <StudentId>1</StudentId>
    <Week>3</Week>
  </SimpleStudentTimesPoco>
  <SimpleStudentTimesPoco>
    <EventId>2</EventId>
    <InTime>2026-01-09T15:26:52.5347392+00:00</InTime>
    <OutTime>2026-01-09T15:26:52.5347392+00:00</OutTime>
    <StudentId>1</StudentId>
    <Week>3</Week>
  </SimpleStudentTimesPoco>
</ArrayOfSimpleStudentTimesPoco>