Microsoft Office 365 · Example Payload

Microsoft Office 365 Listcalendars Example

CloudCollaborationEnterpriseMicrosoftProductivity

Microsoft Office 365 Listcalendars Example is an example object payload from Microsoft Office 365, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "listCalendars",
  "method": "GET",
  "path": "/me/calendars",
  "summary": "Microsoft Office 365 List Calendars",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listcalendars200Example",
      "example": {
        "@odata.context": "example_value",
        "@odata.nextLink": "https://www.example.com",
        "value": [
          {
            "id": "abc123",
            "name": "Example Title",
            "color": "auto",
            "changeKey": "example_value",
            "canEdit": true,
            "canShare": true,
            "canViewPrivateItems": true,
            "isDefaultCalendar": true,
            "hexColor": "example_value",
            "isRemovable": true,
            "isTallyingResponses": true,
            "allowedOnlineMeetingProviders": {},
            "defaultOnlineMeetingProvider": "example_value"
          }
        ]
      }
    }
  ]
}