Skip to main content

CreateIntegrationInput

Create and activate an integration for your organization. The config and auth payloads must conform to the integration type's configSchema and authSchema respectively.

input CreateIntegrationInput {
auth: Map!
config: Map!
}

Fields

CreateIntegrationInput.auth ● Map! non-null scalar {#auth}

Authentication credentials. Must conform to the integration type's authSchema. Write-only — not returned in queries.

CreateIntegrationInput.config ● Map! non-null scalar {#config}

Integration-specific configuration. Must conform to the integration type's configSchema.

Member Of

createIntegration mutation