Retrieves all meetings, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of meetings.

meeting
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
online_meeting_id

Identifier of the online meeting session (e.g. from a video conferencing provider), when applicable.

globally unique identifier
online_meeting_user_id

Identifier of the online meeting provider account/user that organized the session.

globally unique identifier
meeting_type_id

Foreign key of the type of this meeting (see ).

globally unique identifier
company_id

Foreign key of the company this meeting is with.

globally unique identifier
date_start

Date and time this meeting starts.

date
date_end

Date and time this meeting ends.

date
subject

Subject/title of this meeting.

string
description

Free-text description/agenda of this meeting.

string
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "8641288f-e821-4843-9aad-e3ea6cfe5847",
  "online_meeting_id": "d6d72cff-856a-4633-b643-1d09704d774d",
  "online_meeting_user_id": "36ad5c0e-2420-42f1-8053-211ee6390f4e",
  "meeting_type_id": "c2870294-6466-456c-a1bd-fef6329fe304",
  "company_id": "064d020f-53c0-49b7-a85f-59b200b7d916",
  "date_start": "2026-09-16T11:04:04.7430552+00:00",
  "date_end": "2026-09-16T11:04:04.7430552+00:00",
  "subject": "sample string 8",
  "description": "sample string 9",
  "modified_dateutc": "2026-09-16T11:04:04.7430552+00:00"
}

application/xml, text/xml

Sample:
<meeting xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <company_id>064d020f-53c0-49b7-a85f-59b200b7d916</company_id>
  <date_end>2026-09-16T11:04:04.743Z</date_end>
  <date_start>2026-09-16T11:04:04.743Z</date_start>
  <description>sample string 9</description>
  <id>8641288f-e821-4843-9aad-e3ea6cfe5847</id>
  <meeting_type_id>c2870294-6466-456c-a1bd-fef6329fe304</meeting_type_id>
  <modified_dateutc>2026-09-16T11:04:04.743Z</modified_dateutc>
  <online_meeting_id>d6d72cff-856a-4633-b643-1d09704d774d</online_meeting_id>
  <online_meeting_user_id>36ad5c0e-2420-42f1-8053-211ee6390f4e</online_meeting_user_id>
  <subject>sample string 8</subject>
</meeting>