GET api/meetings/type/{meetingType}/id/{objId}
Returns a IEnumerable of the EOS Meeting objects from database or cache
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| meetingType |
EnumMeetingObjType Course = 1, //CRS Program = 2 //PGM |
MeetingObjType |
Required |
| objId |
The ID of the object entity attached to the Meetings you would like returned |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
IEnumerable of EOSCourseMeeting
Collection of EOSMeeting| Name | Description | Type | Additional 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:58.1265604-07:00",
"EndDate": "2026-06-05T13:54:58.1265604-07:00",
"DeletedDate": "2026-06-05T13:54:58.1265604-07:00",
"LastUpdated": "2026-06-05T13:54:58.1265604-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:58.1265604-07:00",
"EndDate": "2026-06-05T13:54:58.1265604-07:00",
"DeletedDate": "2026-06-05T13:54:58.1265604-07:00",
"LastUpdated": "2026-06-05T13:54:58.1265604-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:58.1265604-07:00</DeletedDate>
<EndDate>2026-06-05T13:54:58.1265604-07:00</EndDate>
<LastUpdated>2026-06-05T13:54:58.1265604-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:58.1265604-07:00</StartDate>
</EOSMeeting>
<EOSMeeting>
<BuildingId>1</BuildingId>
<Comment>sample string 7</Comment>
<Deleted>true</Deleted>
<DeletedDate>2026-06-05T13:54:58.1265604-07:00</DeletedDate>
<EndDate>2026-06-05T13:54:58.1265604-07:00</EndDate>
<LastUpdated>2026-06-05T13:54:58.1265604-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:58.1265604-07:00</StartDate>
</EOSMeeting>
</ArrayOfEOSMeeting>