Updates the meeting with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The meeting id. |
globally unique identifier |
Required |
Body Parameters :
meeting| Name | Description | Type | Additional 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": "ef498763-9e18-4679-8ca7-ae3fe0acf87d",
"online_meeting_id": "5d944fe7-08e8-4122-968b-fdbe38a88843",
"online_meeting_user_id": "0a9dc53b-8c89-4bce-ae53-26ba6f0bd119",
"meeting_type_id": "4f17e07a-e8e4-4480-81df-c8f30f2232ca",
"company_id": "2cae07bf-9252-4500-8600-ecc717f82d6a",
"date_start": "2026-09-16T09:25:10.8937178+00:00",
"date_end": "2026-09-16T09:25:10.8937178+00:00",
"subject": "sample string 8",
"description": "sample string 9",
"modified_dateutc": "2026-09-16T09:25:10.8937178+00:00"
}
application/xml, text/xml
Sample:
<meeting xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_id>2cae07bf-9252-4500-8600-ecc717f82d6a</company_id> <date_end>2026-09-16T09:25:10.893Z</date_end> <date_start>2026-09-16T09:25:10.893Z</date_start> <description>sample string 9</description> <id>ef498763-9e18-4679-8ca7-ae3fe0acf87d</id> <meeting_type_id>4f17e07a-e8e4-4480-81df-c8f30f2232ca</meeting_type_id> <modified_dateutc>2026-09-16T09:25:10.893Z</modified_dateutc> <online_meeting_id>5d944fe7-08e8-4122-968b-fdbe38a88843</online_meeting_id> <online_meeting_user_id>0a9dc53b-8c89-4bce-ae53-26ba6f0bd119</online_meeting_user_id> <subject>sample string 8</subject> </meeting>
Response Information
Resource Description :
IHttpActionResult containing the updated meeting.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.