Integration
class indico.queries.integration.AddExchangeIntegration(config, credentials, workflow_id)
Mutation to add a Microsoft Exchange integration to a workflow
- Parameters:
- workflow_id (int) – workflow to add integration to
- config (ExchangeIntegrationConfiguration) – settings for which mailbox to point to and which emails to process
- credentials (ExchangeIntegrationCredentials) – client id, client secret, and tenant id for authenticating with Exchange
class indico.queries.integration.StartIntegration(integration_id)
Mutation to start an existing integration. Once an integration is started, documents will be submitted to the associated workflow.
- Parameters:
integration_id (int) – id of the integration to start
class indico.queries.integration.DeleteIntegration(integration_id)
Mutation to delete an existing Integration.
- Parameters:
integration_id (int) – id of the integration to delete
class indico.queries.integration.PauseIntegration(integration_id)
Mutation to pause an existing Integration.
- Parameters:
integration_id (int) – id of the integration to pause
Updated about 1 year ago