Skip to main content

Perform Office 365 Onedrive Backup

Select

SaaS
Customer Managed

Perform Office 365 Onedrive Backup

Path Parameters
  • appId int32 required

    Commvault Onedrive app id

Request Body
  • totalRunningTime int32

    Total running time of the backup in minutes

  • users object[]
  • GUID string
  • name string
  • content object[]
  • type string required

    Possible values: [ALL_USERS, GROUP, CUSTOM_CATEGORY]

  • name string required

    Name of the Onedrive Content.

  • GUID string

    GUID is required if type is CUSTOM_CATEGORY or GROUP

  • type string

    Possible values: [ALL_USERS, USERS_BACKED_UP_RECENTLY, USERS_NEVER_BACKED_UP, USERS_NOT_BACKED_UP_RECENTLY]

Responses

OK


Schema
  • taskId int32
  • jobIds string[]

    JobIds for the immediate run request

POST /v4/office365/onedrive/:appid/backup    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
appId — path required
Body

{
"totalRunningTime": 0,
"users": [
{
"GUID": "string",
"name": "string"
}
],
"content": [
{
"type": "ALL_USERS",
"name": "string",
"GUID": "string"
}
],
"type": "ALL_USERS"
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/Office365/OneDrive/:appId/Backup' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"totalRunningTime": 0,
"users": [
{
"GUID": "string",
"name": "string"
}
],
"content": [
{
"type": "ALL_USERS",
"name": "string",
"GUID": "string"
}
],
"type": "ALL_USERS"
}'