Skip to main content

Perform Office 365 Teams Backup

Select

SaaS
Customer Managed

Perform Office 365 Teams Backup

Path Parameters
  • appId int32 required

    Commvault Teams app id

Request Body

  • totalRunningTime int64

    Total running time of the backup in minutes

  • teams object[]
  • GUID string
  • name string
  • users object[]

    Teams Users List

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

    Possible values: [GROUP, CUSTOM_CATEGORY]

  • name string required

    Name of the Teams Content.

  • GUID string required

    GUID is required if type is CUSTOM_CATEGORY or GROUP

Responses

OK


Schema
  • taskId int32
  • jobIds string[]

    JobIds for the immediate run request

POST /v4/office365/teams/: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,
"teams": [
{
"GUID": "string",
"name": "string"
}
],
"users": [
{
"GUID": "string",
"name": "string"
}
],
"content": [
{
"type": "GROUP",
"name": "string",
"GUID": "string"
}
]
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/Office365/Teams/:appId/Backup' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"totalRunningTime": 0,
"teams": [
{
"GUID": "string",
"name": "string"
}
],
"users": [
{
"GUID": "string",
"name": "string"
}
],
"content": [
{
"type": "GROUP",
"name": "string",
"GUID": "string"
}
]
}'