Skip to content

deleteO365AzureApp

Deletes an O365 Azure AD App from the account.

Arguments

Argument Type Description
o365AppClientId (required) String! The client ID of the Azure AD app to delete.
o365AppType (required) String! The type of the Azure AD app to delete.

Returns

RequestStatus!

Sample

mutation DeleteO365AzureApp($o365AppClientId: String!, $o365AppType: String!) {
  deleteO365AzureApp(
    o365AppClientId: $o365AppClientId
    o365AppType: $o365AppType
  ) {
    success
  }
}
{
  "o365AppClientId": "example-string",
  "o365AppType": "example-string"
}
{
  "data": {
    "deleteO365AzureApp": {
      "success": true
    }
  }
}