HostedSuite

<back to all web services

GetMeetingRoomRequest

Retrieve a specific meeting room

The following routes are available for this service:
POST/api/scheduling/meeting-room
GetMeetingRoomRequest Parameters:
NameParameterData TypeRequiredDescription
IdbodystringNoThe ID of the meeting room you want to retrieve
RequestBase<TResponse> Parameters:
NameParameterData TypeRequiredDescription
CustomerNameformstringYesThe HostedSuite Customer Name
UserNameformstringYesThe HostedSuite User Name. Data visibility and security is based on this user's permissions.
PasswordformstringYesThe HostedSuite User's Password
MeetingRoomInfo Parameters:
NameParameterData TypeRequiredDescription
IdformstringNo
DateLastModifiedformstringNo
NameformstringNo
CenterIdformstringNo
CenterNameformstringNo
CustomFieldsformList<CustomFieldInfo>No
MinBookingDurationformintNo
DoubleBookingPolicyformDoubleBookingPolicyTypesNo
VisibilityformMeetingRoomVisibilityTypesNo
SchedulingNoticeformstringNo
DescriptionformstringNo
BillAsServiceIdformstringNo
BillAsServiceNameformstringNo
CapacityformintNo
IsActiveformboolNo
InternalNameformstringNo
CategoryIdsformList<string>No
OrderInSchedulerformintNo
CustomFieldInfo Parameters:
NameParameterData TypeRequiredDescription
NameformstringNo
ValueformstringNo
DoubleBookingPolicyTypes Enum:
NeverAllow
AlwaysAllow
AllowWithPermissions
MeetingRoomVisibilityTypes Enum:
Everyone
InternalUseOnly
MeetingRoomInfo Parameters:
NameParameterData TypeRequiredDescription
IdformstringNo
DateLastModifiedformstringNo
NameformstringNo
CenterIdformstringNo
CenterNameformstringNo
CustomFieldsformList<CustomFieldInfo>No
MinBookingDurationformintNo
DoubleBookingPolicyformDoubleBookingPolicyTypesNo
VisibilityformMeetingRoomVisibilityTypesNo
SchedulingNoticeformstringNo
DescriptionformstringNo
BillAsServiceIdformstringNo
BillAsServiceNameformstringNo
CapacityformintNo
IsActiveformboolNo
InternalNameformstringNo
CategoryIdsformList<string>No
OrderInSchedulerformintNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /api/scheduling/meeting-room HTTP/1.1 
Host: evo.hostedsuite.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<GetMeetingRoomRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Evo.HostedSuite.Core.ServiceModel">
  <CustomerName>String</CustomerName>
  <Password>String</Password>
  <UserName>String</UserName>
  <Id>String</Id>
</GetMeetingRoomRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<MeetingRoomInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Evo.HostedSuite.Core.ServiceModel">
  <BillAsServiceId>String</BillAsServiceId>
  <BillAsServiceName>String</BillAsServiceName>
  <Capacity>0</Capacity>
  <CategoryIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </CategoryIds>
  <CenterId>String</CenterId>
  <CenterName>String</CenterName>
  <CustomFields>
    <CustomFieldInfo>
      <Name>String</Name>
      <Value>String</Value>
    </CustomFieldInfo>
  </CustomFields>
  <DateLastModified>String</DateLastModified>
  <Description>String</Description>
  <DoubleBookingPolicy>NeverAllow</DoubleBookingPolicy>
  <Id>String</Id>
  <InternalName>String</InternalName>
  <IsActive>false</IsActive>
  <MinBookingDuration>0</MinBookingDuration>
  <Name>String</Name>
  <OrderInScheduler>0</OrderInScheduler>
  <SchedulingNotice>String</SchedulingNotice>
  <Visibility>Everyone</Visibility>
</MeetingRoomInfo>