GET api/consumer/v1/calendarEvents/favorites/search?q={q}&pageSize={pageSize}

Search a Calendar available for user

Request Information

URI Parameters

NameDescriptionTypeAdditional information
q

string

Required

pageSize

integer

Default value is 50

Body Parameters

None

Response Information

Resource Description

List of available Calendars

Collection of CalendarFavoriteSearchDto
NameDescriptionTypeAdditional information
Description

Description of element

string

None

CalendarFavoriteId

Id of Calendar Favorite element

integer

None

Type

Type of Calendar Favorite

string

None

Response Formats

application/json, text/json

Sample:
[
  {
    "Description": "sample string 1",
    "CalendarFavoriteId": 2,
    "Type": "sample string 3"
  },
  {
    "Description": "sample string 1",
    "CalendarFavoriteId": 2,
    "Type": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCalendarFavoriteSearchDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Oryx.Web.Api.Models">
  <CalendarFavoriteSearchDto>
    <CalendarFavoriteId>2</CalendarFavoriteId>
    <Description>sample string 1</Description>
    <Type>sample string 3</Type>
  </CalendarFavoriteSearchDto>
  <CalendarFavoriteSearchDto>
    <CalendarFavoriteId>2</CalendarFavoriteId>
    <Description>sample string 1</Description>
    <Type>sample string 3</Type>
  </CalendarFavoriteSearchDto>
</ArrayOfCalendarFavoriteSearchDto>