PUT api/Admin/Meeting/RequestChange
Request Information
URI Parameters
None.
Body Parameters
MeetingRequestChangeDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ExchangeICalUId | string |
None. |
|
| Start | date |
None. |
|
| End | date |
None. |
|
| AllDay | boolean |
None. |
|
| CurrentMeetingRoomId | integer |
None. |
|
| MeetingRoomIds | Collection of integer |
None. |
|
| Comment | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"ExchangeICalUId": "sample string 2",
"Start": "2025-12-06T03:58:23.5431963+00:00",
"End": "2025-12-06T03:58:23.5431963+00:00",
"AllDay": true,
"CurrentMeetingRoomId": 6,
"MeetingRoomIds": [
1,
2
],
"Comment": "sample string 7"
}
application/xml, text/xml
Sample:
<MeetingRequestChangeDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bluedock.Booking.Rest.Models.Admin">
<AllDay>true</AllDay>
<Comment>sample string 7</Comment>
<CurrentMeetingRoomId>6</CurrentMeetingRoomId>
<End>2025-12-06T03:58:23.5431963+00:00</End>
<ExchangeICalUId>sample string 2</ExchangeICalUId>
<Id>1</Id>
<MeetingRoomIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</MeetingRoomIds>
<Start>2025-12-06T03:58:23.5431963+00:00</Start>
</MeetingRequestChangeDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.