GET api/meetings/{meetingId}

Returns EOS Meeting objects from database or cache

Request Information

URI Parameters

NameDescriptionTypeAdditional information
meetingId

The ID of the meeting

integer

Required

Body Parameters

None.

Response Information

Resource Description

EOSCourseMeeting

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:55:33.6578851-07:00",
  "EndDate": "2026-06-05T13:55:33.6578851-07:00",
  "DeletedDate": "2026-06-05T13:55:33.6578851-07:00",
  "LastUpdated": "2026-06-05T13:55:33.6578851-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:
<EOSMeeting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EOSAPI.Base.Models">
  <BuildingId>1</BuildingId>
  <Comment>sample string 7</Comment>
  <Deleted>true</Deleted>
  <DeletedDate>2026-06-05T13:55:33.6578851-07:00</DeletedDate>
  <EndDate>2026-06-05T13:55:33.6578851-07:00</EndDate>
  <LastUpdated>2026-06-05T13:55:33.6578851-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:55:33.6578851-07:00</StartDate>
</EOSMeeting>