Browsed by
Tag: api

Veeam Backup & Replication v10: Data Integration API examples

Veeam Backup & Replication v10: Data Integration API examples

At VeeamON 2019, I did a live demo around the new Veeam Backup & Replication v10 feature called “Data Integration API“. This is a great new feature that will make 3rd party integration into your backups even easier. After the demo, I had several discussions about the use cases and people asked me for the specific code (and even the Veeam Backup & Replication build used at VeeamON). At that point in time, I would redirect them to my sneak…

Read More Read More

Veeam Backup & Replication v10 sneak peek: Data Integration API

Veeam Backup & Replication v10 sneak peek: Data Integration API

At VeeamON 2019, I was privileged to present on the main stage and do actual live demo’s. One of these was around an upcoming feature for Veeam Backup & Replication v10 called “Data Integration API”. This is a great new feature that will make 3rd party integration into your backups even easier. This feature will allow you to use your backup data for data mining, data analytics, AI,… The list of possibilities keeps growing and growing as I think about…

Read More Read More

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