Skip to main content

Create Office 365 SharePoint Online

Select

SaaS
Customer Managed

Create Office 365 SharePoint Online app

Request Body
  • name string required

    Unique Sharepoint app name

  • serverPlan object required
  • id int32
  • name string
  • tenantAdminSiteURL string required

    SharePoint Online tenant admin site URL

  • azureApp object
  • applicationId string required

    Azure Application ID

  • applicationSecret string required

    Azure app secret key, needs to be base64 encoded

  • certificatePassword string

    Password of the azure application certificate and must be in base64 encoded format. Only applicable for SharePoint Online

  • certificate string

    Content of the azure application certificate file and must be in base64 encoded format. Accepted fileTypes are pfx, p12. Only applicable for SharePoint Online

  • certificateThumbprint string

    Thumbprint of the azure application certificate file. Only applicable for SharePoint Online

  • azureDirectoryId string required

    Azure directory (tenant) ID

Responses

OK


Schema
  • id int32
  • name string
POST /v4/office365/sharepoint    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"name": "string",
"serverPlan": {
"id": 0,
"name": "string"
},
"tenantAdminSiteURL": "string",
"azureApp": {
"applicationId": "string",
"applicationSecret": "string",
"certificatePassword": "string",
"certificate": "string",
"certificateThumbprint": "string",
"azureDirectoryId": "string"
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/Office365/SharePoint' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"serverPlan": {
"id": 0,
"name": "string"
},
"tenantAdminSiteURL": "string",
"azureApp": {
"applicationId": "string",
"applicationSecret": "string",
"certificatePassword": "string",
"certificate": "string",
"certificateThumbprint": "string",
"azureDirectoryId": "string"
}
}'