Skip to main content

Configure Office365 Plan

Select

SaaS

This API can be used to create a Office 365 plan.

Request Body
  • planName string required

    Office 365 plan name

  • planTier integer required

    pricing tier of the plan. 1 = STANDARD (365 days), 2 = ENTERPRISE (1095 days)

  • retention integer

    If provided, input retention will be used instead of the default as per pricing tier

Responses

OK


Schema
  • data object
  • planName string
  • planId integer
POST /v4/office365plan    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"planName": "string",
"planTier": 0,
"retention": 0
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/office365plan' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"planName": "string",
"planTier": 0,
"retention": 0
}'