Creates a new meeting.

Request Information

URI Parameters :

None.

Body Parameters :

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

Request Formats :

application/json, text/json

Sample:
{
  "id": "577dd1c9-965b-4b2b-9cfe-ab0912791fc4",
  "online_meeting_id": "5ee0258f-9f25-46de-89be-1f4859698474",
  "online_meeting_user_id": "82f907bd-33ae-4f2e-8941-2f5b803c0014",
  "meeting_type_id": "43b44136-5685-4d49-9791-8ed372513f2f",
  "company_id": "0ebe2036-462f-4216-8d20-66ceb2549531",
  "date_start": "2026-09-16T11:04:03.7378172+00:00",
  "date_end": "2026-09-16T11:04:03.7378172+00:00",
  "subject": "sample string 8",
  "description": "sample string 9",
  "modified_dateutc": "2026-09-16T11:04:03.7378172+00:00"
}

application/xml, text/xml

Sample:
<meeting xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <company_id>0ebe2036-462f-4216-8d20-66ceb2549531</company_id>
  <date_end>2026-09-16T11:04:03.737Z</date_end>
  <date_start>2026-09-16T11:04:03.737Z</date_start>
  <description>sample string 9</description>
  <id>577dd1c9-965b-4b2b-9cfe-ab0912791fc4</id>
  <meeting_type_id>43b44136-5685-4d49-9791-8ed372513f2f</meeting_type_id>
  <modified_dateutc>2026-09-16T11:04:03.737Z</modified_dateutc>
  <online_meeting_id>5ee0258f-9f25-46de-89be-1f4859698474</online_meeting_id>
  <online_meeting_user_id>82f907bd-33ae-4f2e-8941-2f5b803c0014</online_meeting_user_id>
  <subject>sample string 8</subject>
</meeting>

Response Information

Resource Description :

IHttpActionResult containing the created meeting.

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": "65eeff01-7249-431a-a0c9-45bf1a11bd0e",
  "online_meeting_id": "6443167f-9d5b-45ac-8c86-0b65ed4a0593",
  "online_meeting_user_id": "f1750736-52b8-4ccf-9e63-abc6d17fe008",
  "meeting_type_id": "edf59b97-a72c-4c58-81ce-0607eca7e0dc",
  "company_id": "3e64adca-565d-416e-89bc-092da8f9de92",
  "date_start": "2026-09-16T11:04:03.7489081+00:00",
  "date_end": "2026-09-16T11:04:03.7489081+00:00",
  "subject": "sample string 8",
  "description": "sample string 9",
  "modified_dateutc": "2026-09-16T11:04:03.7489081+00:00"
}

application/xml, text/xml

Sample:
<meeting xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <company_id>3e64adca-565d-416e-89bc-092da8f9de92</company_id>
  <date_end>2026-09-16T11:04:03.748Z</date_end>
  <date_start>2026-09-16T11:04:03.748Z</date_start>
  <description>sample string 9</description>
  <id>65eeff01-7249-431a-a0c9-45bf1a11bd0e</id>
  <meeting_type_id>edf59b97-a72c-4c58-81ce-0607eca7e0dc</meeting_type_id>
  <modified_dateutc>2026-09-16T11:04:03.748Z</modified_dateutc>
  <online_meeting_id>6443167f-9d5b-45ac-8c86-0b65ed4a0593</online_meeting_id>
  <online_meeting_user_id>f1750736-52b8-4ccf-9e63-abc6d17fe008</online_meeting_user_id>
  <subject>sample string 8</subject>
</meeting>