Microsoft Office 365 · Example Payload

Microsoft Office 365 Listmailfolders Example

CloudCollaborationEnterpriseMicrosoftProductivity

Microsoft Office 365 Listmailfolders 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": "listMailFolders",
  "method": "GET",
  "path": "/me/mailFolders",
  "summary": "Microsoft Office 365 List Mail Folders",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listmailfolders200Example",
      "example": {
        "@odata.context": "example_value",
        "@odata.nextLink": "https://www.example.com",
        "value": [
          {
            "id": "abc123",
            "displayName": "example_value",
            "parentFolderId": "500123",
            "childFolderCount": 10,
            "totalItemCount": 10,
            "unreadItemCount": 10,
            "isHidden": true
          }
        ]
      }
    }
  ]
}