GET CAWS/StudentLedger

This request returns a collection of student ledger records that fulfill filtering criteria passed in the AwsLedgerFilterPoco json object.

Response Information

IEnumerable generic collection of the StudentLedgerEntryPoco objects representing student ledger marks.

Response body formats

application/json, text/json

Sample:
[
  {
    "RecordId": 1,
    "Source": "sample string 2",
    "StudentId": 3,
    "EventId": 4,
    "Week": 5,
    "MarkId": 6,
    "MinsLate": 7,
    "Comments": "sample string 8",
    "DateChange": "2026-01-09T15:23:21.4860989+00:00",
    "UserId": 10
  },
  {
    "RecordId": 1,
    "Source": "sample string 2",
    "StudentId": 3,
    "EventId": 4,
    "Week": 5,
    "MarkId": 6,
    "MinsLate": 7,
    "Comments": "sample string 8",
    "DateChange": "2026-01-09T15:23:21.4860989+00:00",
    "UserId": 10
  },
  {
    "RecordId": 1,
    "Source": "sample string 2",
    "StudentId": 3,
    "EventId": 4,
    "Week": 5,
    "MarkId": 6,
    "MinsLate": 7,
    "Comments": "sample string 8",
    "DateChange": "2026-01-09T15:23:21.4860989+00:00",
    "UserId": 10
  }
]

application/xml, text/xml

Sample:
<ArrayOfStudentLedgerEntryPoco xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Celcat.Models">
  <StudentLedgerEntryPoco>
    <Comments>sample string 8</Comments>
    <DateChange>2026-01-09T15:23:21.4860989+00:00</DateChange>
    <EventId>4</EventId>
    <MarkId>6</MarkId>
    <MinsLate>7</MinsLate>
    <RecordId>1</RecordId>
    <Source>sample string 2</Source>
    <StudentId>3</StudentId>
    <UserId>10</UserId>
    <Week>5</Week>
  </StudentLedgerEntryPoco>
  <StudentLedgerEntryPoco>
    <Comments>sample string 8</Comments>
    <DateChange>2026-01-09T15:23:21.4860989+00:00</DateChange>
    <EventId>4</EventId>
    <MarkId>6</MarkId>
    <MinsLate>7</MinsLate>
    <RecordId>1</RecordId>
    <Source>sample string 2</Source>
    <StudentId>3</StudentId>
    <UserId>10</UserId>
    <Week>5</Week>
  </StudentLedgerEntryPoco>
  <StudentLedgerEntryPoco>
    <Comments>sample string 8</Comments>
    <DateChange>2026-01-09T15:23:21.4860989+00:00</DateChange>
    <EventId>4</EventId>
    <MarkId>6</MarkId>
    <MinsLate>7</MinsLate>
    <RecordId>1</RecordId>
    <Source>sample string 2</Source>
    <StudentId>3</StudentId>
    <UserId>10</UserId>
    <Week>5</Week>
  </StudentLedgerEntryPoco>
</ArrayOfStudentLedgerEntryPoco>