PUT api/Admin/MeetingRoom/{meetingroomId}/Settings

Request Information

URI Parameters

NameDescriptionTypeAdditional information
meetingroomId

integer

Required

Body Parameters

MeetingRoomSettingDTO
NameDescriptionTypeAdditional information
ShowSubject

boolean

None.

ShowOrganizer

boolean

None.

ShowFaultyReport

boolean

None.

InfoscreenShowFacilities

boolean

None.

InfoscreenShowCapacity

boolean

None.

InfoscreenShowRoomImages

boolean

None.

InfoscreenCheckinRequired

boolean

None.

InfoscreenCheckinMinutesBefore

integer

None.

InfoscreenCheckinReleaseAfterMinutes

integer

None.

HasCatering

boolean

None.

CateringAddBuffertime

boolean

None.

CateringBuffertime

integer

None.

SensorCheckOut

boolean

None.

SensorRelaseIfNoPresenceAfterMinutes

integer

None.

InfoscreenBookingInterval

integer

None.

CateringDeliveryEnabled

boolean

None.

CateringExternalsDisabled

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ShowSubject": true,
  "ShowOrganizer": true,
  "ShowFaultyReport": true,
  "InfoscreenShowFacilities": true,
  "InfoscreenShowCapacity": true,
  "InfoscreenShowRoomImages": true,
  "InfoscreenCheckinRequired": true,
  "InfoscreenCheckinMinutesBefore": 1,
  "InfoscreenCheckinReleaseAfterMinutes": 1,
  "HasCatering": true,
  "CateringAddBuffertime": true,
  "CateringBuffertime": 1,
  "SensorCheckOut": true,
  "SensorRelaseIfNoPresenceAfterMinutes": 1,
  "InfoscreenBookingInterval": 1,
  "CateringDeliveryEnabled": true,
  "CateringExternalsDisabled": true
}

application/xml, text/xml

Sample:
<MeetingRoomSettingDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bluedock.Booking.Rest.Models.Admin">
  <CateringAddBuffertime>true</CateringAddBuffertime>
  <CateringBuffertime>1</CateringBuffertime>
  <CateringDeliveryEnabled>true</CateringDeliveryEnabled>
  <CateringExternalsDisabled>true</CateringExternalsDisabled>
  <HasCatering>true</HasCatering>
  <InfoscreenBookingInterval>1</InfoscreenBookingInterval>
  <InfoscreenCheckinMinutesBefore>1</InfoscreenCheckinMinutesBefore>
  <InfoscreenCheckinReleaseAfterMinutes>1</InfoscreenCheckinReleaseAfterMinutes>
  <InfoscreenCheckinRequired>true</InfoscreenCheckinRequired>
  <InfoscreenShowCapacity>true</InfoscreenShowCapacity>
  <InfoscreenShowFacilities>true</InfoscreenShowFacilities>
  <InfoscreenShowRoomImages>true</InfoscreenShowRoomImages>
  <SensorCheckOut>true</SensorCheckOut>
  <SensorRelaseIfNoPresenceAfterMinutes>1</SensorRelaseIfNoPresenceAfterMinutes>
  <ShowFaultyReport>true</ShowFaultyReport>
  <ShowOrganizer>true</ShowOrganizer>
  <ShowSubject>true</ShowSubject>
</MeetingRoomSettingDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'MeetingRoomSettingDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.