Browsed by
Tag: getting

Veeam Backup for Microsoft Office 365 RESTful API: General settings

Veeam Backup for Microsoft Office 365 RESTful API: General settings

In the final part of the RESTful API series for Veeam Backup for Microsoft Office 365, we’ll go over some general settings which can be modified as well. These are fairly self-explaining. Exclusion settings The following request allows you to modify the backup exclusion settings. As this is a global setting, backup jobs will not process specified data. We will perform a PUT request against “/v4/ExclusionSettings“. {  “deletedItems”: “true”,  “drafts”: “false”,  “junkEmail”: “false”,  “outbox”: “false”,  “syncIssues”: “false”,  “litigationHold”: “true”,  “inPlaceHold”: “true” } The above will modify the…

Read More Read More

Veeam Backup for Microsoft Office 365 RESTful API: Workflow examples

Veeam Backup for Microsoft Office 365 RESTful API: Workflow examples

Over the past few weeks, I’ve explained on how to get started with the RESTful API and took a closer look on creating and managing your infrastructure as well as the restore process. The following blog post contains 2 complete workflows where we combine all this to make it even more clear on the steps required to get from A to Z. Workflow 1: Create and start a job The above image explains the steps we need to perform to…

Read More Read More

Veeam Backup for Microsoft Office 365 RESTful API: SharePoint restores

Veeam Backup for Microsoft Office 365 RESTful API: SharePoint restores

This post is based upon the entire organization backup job which we made in part 1, we will dig deeper on how to perform restores for SharePoint. Starting a restore session Before we can actually restore a file or folder, we need to start a restore session. We will leverage the organization ID and perform a POST request against “/v2/Organizations/{organizationID}/action“. This will start a Veeam Explorer in the background and return a restore session ID. The restore session ID will…

Read More Read More

Veeam Backup for Microsoft Office 365 RESTful API: OneDrive restores

Veeam Backup for Microsoft Office 365 RESTful API: OneDrive restores

This post is based upon the entire organization backup job which we made in part 1, we will dig deeper on how to perform restores for OneDrive for Business. Starting a restore session Before we can actually restore a file or folder, we need to start a restore session. We will leverage the organization ID and perform a POST request against “/v2/Organizations/{organizationID}/action“. This will start a Veeam Explorer in the background and return a restore session ID. The restore session…

Read More Read More

Veeam Backup for Microsoft Office 365 RESTful API: Exchange restores

Veeam Backup for Microsoft Office 365 RESTful API: Exchange restores

Based upon the entire organization backup job, we will dig deeper on how to perform restores for Exchange and more important the requirements to it. IMPORTANT: To export Veeam Backup for Microsoft Office 365 entities to PST or MSG files, you must have a 64-bit version of Microsoft Outlook 2016, Microsoft Outlook 2013 or Microsoft Outlook 2010 installed on the computer running restore sessions. Starting a restore session Before we can actually restore an item (e-mail, calendar item,…), we need…

Read More Read More