GET api/Student/ClassDates?fromdate={fromdate}&todate={todate}

Get student class timetable dates list

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fromdate

Date format (e.g. dd/mm/yyyy) to check against class start date
You can specify exact date matching by fromdate=1/1/2016.
Both fromdate and todate value must be provided.

string

None.

todate

Date format (e.g. dd/mm/yyyy) to check against class finish date
You can specify exact date matching by todate=1/1/2016.
Both fromdate and todate value must be provided.

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of date

Response Formats

application/json, text/json

Sample:
[
  "2025-04-26T23:59:41.9539889+10:00",
  "2025-04-26T23:59:41.9539889+10:00"
]

application/xml, text/xml

Sample:
<ArrayOfdateTime xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <dateTime>2025-04-26T23:59:41.9539889+10:00</dateTime>
  <dateTime>2025-04-26T23:59:41.9539889+10:00</dateTime>
</ArrayOfdateTime>