POST api/MeetingInsights/QueryMeetings

Request Information

URI Parameters

None.

Body Parameters

MeetingInsightSearchDTO
NameDescriptionTypeAdditional information
TitleSubString

string

None.

Id

integer

None.

TenantId

integer

None.

StartHour

integer

None.

StartMinute

integer

None.

EndHour

integer

None.

EndMinute

integer

None.

StartDay

integer

None.

StartMonth

integer

None.

StartYear

integer

None.

EndDay

integer

None.

EndMonth

integer

None.

EndYear

integer

None.

AllDay

boolean

None.

CreatedBySubString

string

None.

ExactStartDate

boolean

None.

ExactEndDate

boolean

None.

ExactStartTime

boolean

None.

ExactEndTime

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "TitleSubString": "sample string 1",
  "Id": 1,
  "TenantId": 1,
  "StartHour": 1,
  "StartMinute": 1,
  "EndHour": 1,
  "EndMinute": 1,
  "StartDay": 1,
  "StartMonth": 1,
  "StartYear": 1,
  "EndDay": 1,
  "EndMonth": 1,
  "EndYear": 1,
  "AllDay": true,
  "CreatedBySubString": "sample string 2",
  "ExactStartDate": true,
  "ExactEndDate": true,
  "ExactStartTime": true,
  "ExactEndTime": true
}

application/xml, text/xml

Sample:
<MeetingInsightSearchDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bluedock.Booking.Rest.Models.Insight">
  <AllDay>true</AllDay>
  <CreatedBySubString>sample string 2</CreatedBySubString>
  <EndDay>1</EndDay>
  <EndHour>1</EndHour>
  <EndMinute>1</EndMinute>
  <EndMonth>1</EndMonth>
  <EndYear>1</EndYear>
  <ExactEndDate>true</ExactEndDate>
  <ExactEndTime>true</ExactEndTime>
  <ExactStartDate>true</ExactStartDate>
  <ExactStartTime>true</ExactStartTime>
  <Id>1</Id>
  <StartDay>1</StartDay>
  <StartHour>1</StartHour>
  <StartMinute>1</StartMinute>
  <StartMonth>1</StartMonth>
  <StartYear>1</StartYear>
  <TenantId>1</TenantId>
  <TitleSubString>sample string 1</TitleSubString>
</MeetingInsightSearchDTO>

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 'MeetingInsightSearchDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.