Skip to content

checkLatestVersionMgmtAppExists

Checks whether the latest version of the Microsoft 365 Management App exists.

Arguments

Argument Type Description
input (required) CheckLatestVersionMgmtAppExistsInput! The input for checking whether the latest version of the Microsoft 365 Management App exists.

Returns

CheckLatestVersionMgmtAppExistsReply!

Sample

query CheckLatestVersionMgmtAppExists($input: CheckLatestVersionMgmtAppExistsInput!) {
  checkLatestVersionMgmtAppExists(input: $input) {
    latestMgmtAppExist
  }
}
{
  "input": {
    "o365OrgId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "checkLatestVersionMgmtAppExists": {
      "latestMgmtAppExist": true
    }
  }
}