office365api - Message/Folder permissions -


is there way change folder and/or message permissions? noticed folders created on root folder of user, not visible - bug or feature?

thank you.

i sent post request with: url= outlook.office.com/api/v2.0/me/mailfolders/root/childfolders content inside: { "displayname": "examplename" } folder created successfully, , reachable via api's. not visible in outlook webui nor in outlook application. design? –

the end-point root folder incorrect, there no need use “root” keyword. , end-point give error when try create folder.

here sample create folder under root folder reference:

post: https://outlook.office.com/api/v2.0/me/mailfolders  

header:

authorization: bearer {token} content-type: application/json 

body:

{"displayname":"foldername"} 

and 201 status code , response figure below: enter image description here


Comments