Skip to main content

Create Office 365 Exchange Online app

Create Office 365 Exchange Online app

Request Body
  • name string required

    Unique Exchange app name

  • serverPlan object required
  • id int32
  • name string
  • azureApp object
  • applicationId string required

    Azure Application ID

  • applicationSecret string required

    Azure app secret key, needs to be base64 encoded

  • azureDirectoryId string required

    Azure directory (tenant) ID

Responses

OK


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

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://localhost/webconsole/api
token
Body
{
"name": "string",
"serverPlan": {
"id": 0,
"name": "string"
},
"azureApp": {
"applicationId": "string",
"applicationSecret": "string",
"azureDirectoryId": "string"
}
}
curl -L -X POST 'https://localhost/webconsole/api/V4/Office365/Exchange' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"name": "string",
"serverPlan": {
"id": 0,
"name": "string"
},
"azureApp": {
"applicationId": "string",
"applicationSecret": "string",
"azureDirectoryId": "string"
}
}'