Skip to content

insertCustomerO365App

Inserts a Customer-hosted O365 Azure AD App.

Arguments

Argument Type Description
input (required) InsertCustomerO365AppInput! The input for the InsertCustomerO365App mutation.

Returns

RequestStatus!

Sample

mutation InsertCustomerO365App($input: InsertCustomerO365AppInput!) {
  insertCustomerO365App(input: $input) {
    success
  }
}
{
  "input": {
    "appClientId": "example-string",
    "appClientSecret": "example-string",
    "appType": "example-string",
    "subscriptionId": "example-string"
  }
}
{
  "data": {
    "insertCustomerO365App": {
      "success": true
    }
  }
}