PUT api/Planner/Calendars/SortOrder
Request Information
URI Parameters
None.
Body Parameters
PlannerCalendarSortOrderRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| CalendarItems | Collection of PlannerCalendarSortOrderRequestItemDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"CalendarItems": [
{
"CalendarId": 1,
"SortOrder": 2
},
{
"CalendarId": 1,
"SortOrder": 2
}
]
}
application/xml, text/xml
Sample:
<PlannerCalendarSortOrderRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bluedock.Booking.Rest.Models.Planner">
<CalendarItems>
<PlannerCalendarSortOrderRequestItemDTO>
<CalendarId>1</CalendarId>
<SortOrder>2</SortOrder>
</PlannerCalendarSortOrderRequestItemDTO>
<PlannerCalendarSortOrderRequestItemDTO>
<CalendarId>1</CalendarId>
<SortOrder>2</SortOrder>
</PlannerCalendarSortOrderRequestItemDTO>
</CalendarItems>
</PlannerCalendarSortOrderRequestDTO>
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.