You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
- Support for `trackingOptions` property in Message responses when using `fields=include_tracking_options`
13
13
- Support for `rawMime` property in Message responses when using `fields=raw_mime`
14
14
-`MessageTrackingOptions` interface for tracking message opens, thread replies, link clicks, and custom labels
15
+
- Support for `includeHiddenFolders` query parameter in folders list endpoint for Microsoft accounts
15
16
16
17
### Fixed
17
18
- Fixed 3MB payload size limit to consider total request size (message body + attachments) instead of just attachment size when determining whether to use multipart/form-data encoding
includeHiddenFolders: true, // Microsoft only - includes hidden folders
43
+
},
44
+
});
45
+
```
46
+
47
+
This parameter defaults to `false` and when set to `true`, includes folders that are typically hidden from the user interface, such as system folders used by Microsoft Exchange for internal operations.
48
+
49
+
## Expected Output
50
+
51
+
The example will output:
52
+
1. A list of all visible folders
53
+
2. A list of all folders including hidden ones (if using a Microsoft account)
54
+
3. A filtered list showing only parent folders with their metadata
55
+
56
+
## Error Handling
57
+
58
+
The example includes proper error handling and will display helpful error messages if:
0 commit comments