How can integrate an Azure DevOps Calendar into my Outlook (D365)?
-
Not get your latest information,does the following answers help you? If you have any concern, feel free to share it here. – Hugh Lin Apr 20 '20 at 02:12
2 Answers
The Azure DevOps calendar is a extension: Team Calendar, and the source code is in github: https://github.com/microsoft/vsts-team-calendar
For this extension, it stores data in Data storage and you can add/get/update it through REST API.
(You can check requests through Developer tool: Press F12 to open Developer tool > Network > add/update event >Check requests)
For example:
https://extmgmt.dev.azure.com/{org}/_apis/ExtensionManagement/InstalledExtensions/ms-devlabs/team-calendar/Data/Scopes/User/Me/Collections/%24settings/Documents
https://extmgmt.dev.azure.com/{org}/_apis/ExtensionManagement/InstalledExtensions/ms-devlabs/team-calendar/Data/Scopes/Default/Current/Collections/{team id}.{month}.{year}/Documents
So, you could build a outlook add-in to call these data storage REST APIs to integrate them.

- 33,174
- 2
- 29
- 53
-
1Thank you for this answer! It enabled me to work out a set of API calls for working with Team Calendar: https://www.stuartellis.name/articles/ado-team-calendar/ – Stuart Ellis Feb 08 '21 at 07:37
For this issue, if you mean the calendar in the Boards, I am afraid currently there is no out-of-box feature to achieve this.
You can integrate Azure DevOps and outlook through Microsoft Flow, but there is currently no such flow about calendar.
In addition, in our official feature suggestion for Azure Devops forum, there is this existing suggestion: Import Outlook Calendar Events Into Azure Calendar. You could vote that suggestion ticket and share your comment there. The product team would provide the updates if they view it.

- 4,848
- 5
- 54
- 76

- 17,829
- 2
- 21
- 25
-
The second link with the feature suggestion does not work, could you please update? – CLS Mar 31 '23 at 08:33