Skip to content
Overview
Overview

Arguments

platformType
PlatformType!,non-nullrequired

Return type

IntegrationInstallationResponse!
integration
Integration!,non-null
error
redirectUri
Mutation sample
mutation startIntegrationInstallation($platformType: PlatformType!) {
  startIntegrationInstallation(platformType: $platformType) {
    integration {
      __typename
      # ...IntegrationFragment
    }
    error 
    redirectUri 
  }
}
Variables
{ "platformType": "COPILOTSTUDIO" }
Response sample
{ "data": { "integration": { "__typename": "Integration" }, "error": "Example String", "redirectUri": "Example String" } }

finishIntegrationInstallation

(installIntegrationInput)
Integration!,non-null

Arguments

installIntegrationInput
InstallIntegrationInput!,non-nullrequired

Return type

Integration!
platform
Platform!,non-null
status
description
String!,non-null
error
Mutation sample
mutation finishIntegrationInstallation($installIntegrationInput: InstallIntegrationInput!) {
  finishIntegrationInstallation(installIntegrationInput: $installIntegrationInput) {
    platform {
      __typename
      # ...PlatformFragment
    }
    status 
    description 
    error 
  }
}
Variables
{ "installIntegrationInput": { "platformType": "COPILOTSTUDIO", "code": "Example String", "state": "Example String" } }
Response sample
{ "data": { "platform": { "__typename": "Platform" }, "status": "DISABLED", "description": "Example String", "error": "Example String" } }

Arguments

platformType
PlatformType!,non-nullrequired
enabled
Boolean!,non-nullrequired

Return type

Integration!
platform
Platform!,non-null
status
description
String!,non-null
error
Mutation sample
mutation updateIntegrationStatus($platformType: PlatformType!, $enabled: Boolean!) {
  updateIntegrationStatus(platformType: $platformType, enabled: $enabled) {
    platform {
      __typename
      # ...PlatformFragment
    }
    status 
    description 
    error 
  }
}
Variables
{ "platformType": "COPILOTSTUDIO", "enabled": true }
Response sample
{ "data": { "platform": { "__typename": "Platform" }, "status": "DISABLED", "description": "Example String", "error": "Example String" } }
Overview
Overview
Overview
Overview
Overview