GET api/meetings/get/changes/from/db/{fromDate}

Returns a IEnumerable of the Meeting objects where last update datetime is equal to or grater than datetime from database

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fromDate

Last update date is equal to or grater than. Expected format 2015-09-03T12:46:41

date

Required

Body Parameters

None.

Response Information

Resource Description

IEnumerable of EOSCourseMeeting

Collection of EOSMeeting
NameDescriptionTypeAdditional information
MeetingId

integer

None.

ProgramMasterId

integer

None.

ProgramType

ProgramType

None.

MeetingType

MeetingType

None.

MeetingObjType

MeetingObjType

None.

ProgramId

integer

None.

StartDate

date

None.

EndDate

date

None.

DeletedDate

date

None.

LastUpdated

date

None.

Comment

string

None.

Deleted

boolean

None.

Location

Site

None.

MeetingDays

string

None.

BuildingId

integer

None.

Room

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MeetingId": 1,
    "ProgramMasterId": 2,
    "ProgramType": 1,
    "MeetingType": 1,
    "MeetingObjType": 1,
    "ProgramId": 3,
    "StartDate": "2026-06-05T13:54:16.3335717-07:00",
    "EndDate": "2026-06-05T13:54:16.3335717-07:00",
    "DeletedDate": "2026-06-05T13:54:16.3335717-07:00",
    "LastUpdated": "2026-06-05T13:54:16.3335717-07:00",
    "Comment": "sample string 7",
    "Deleted": true,
    "Location": 1,
    "MeetingDays": "sample string 9",
    "BuildingId": 1,
    "Room": "sample string 10"
  },
  {
    "MeetingId": 1,
    "ProgramMasterId": 2,
    "ProgramType": 1,
    "MeetingType": 1,
    "MeetingObjType": 1,
    "ProgramId": 3,
    "StartDate": "2026-06-05T13:54:16.3335717-07:00",
    "EndDate": "2026-06-05T13:54:16.3335717-07:00",
    "DeletedDate": "2026-06-05T13:54:16.3335717-07:00",
    "LastUpdated": "2026-06-05T13:54:16.3335717-07:00",
    "Comment": "sample string 7",
    "Deleted": true,
    "Location": 1,
    "MeetingDays": "sample string 9",
    "BuildingId": 1,
    "Room": "sample string 10"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEOSMeeting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EOSAPI.Base.Models">
  <EOSMeeting>
    <BuildingId>1</BuildingId>
    <Comment>sample string 7</Comment>
    <Deleted>true</Deleted>
    <DeletedDate>2026-06-05T13:54:16.3335717-07:00</DeletedDate>
    <EndDate>2026-06-05T13:54:16.3335717-07:00</EndDate>
    <LastUpdated>2026-06-05T13:54:16.3335717-07:00</LastUpdated>
    <Location>UWSeattleCampus</Location>
    <MeetingDays>sample string 9</MeetingDays>
    <MeetingId>1</MeetingId>
    <MeetingObjType>Course</MeetingObjType>
    <MeetingType>Class</MeetingType>
    <ProgramId>3</ProgramId>
    <ProgramMasterId>2</ProgramMasterId>
    <ProgramType>Certificate</ProgramType>
    <Room>sample string 10</Room>
    <StartDate>2026-06-05T13:54:16.3335717-07:00</StartDate>
  </EOSMeeting>
  <EOSMeeting>
    <BuildingId>1</BuildingId>
    <Comment>sample string 7</Comment>
    <Deleted>true</Deleted>
    <DeletedDate>2026-06-05T13:54:16.3335717-07:00</DeletedDate>
    <EndDate>2026-06-05T13:54:16.3335717-07:00</EndDate>
    <LastUpdated>2026-06-05T13:54:16.3335717-07:00</LastUpdated>
    <Location>UWSeattleCampus</Location>
    <MeetingDays>sample string 9</MeetingDays>
    <MeetingId>1</MeetingId>
    <MeetingObjType>Course</MeetingObjType>
    <MeetingType>Class</MeetingType>
    <ProgramId>3</ProgramId>
    <ProgramMasterId>2</ProgramMasterId>
    <ProgramType>Certificate</ProgramType>
    <Room>sample string 10</Room>
    <StartDate>2026-06-05T13:54:16.3335717-07:00</StartDate>
  </EOSMeeting>
</ArrayOfEOSMeeting>