Google Slides Integration with Orkes Conductor
- v5.3.0 and later
Integrating Google Slides with Orkes Conductor lets you build workflows that interact with your Google Slides using the following operations:
- Create Presentation
- Add Slide
- Add Text Box
- Get Presentation Slides
- Get Presentation
- Get Page
- Replace Text in Presentation
- Get Thumbnail
This guide explains how to set up and use the integration. Here’s an overview:
- Get the required credentials from Google Console.
- Configure a new Google Slides integration in Orkes Conductor.
- Use Google Slides integration in workflows.
Step 1: Get the Google Console credentials
To integrate Google Slides with Orkes Conductor, retrieve the OAuth client ID and secret from the Google console, and enable the Google Slides API.
Get OAuth Client credentials
To get the credentials:
- Go to the Google Cloud Console.
- Select your project or create a new one.
- In the left navigation menu, go to APIs & Services > Credentials
- Select + Create credentials > OAuth client ID.

- Choose your application type as Web application, and enter a Name.
- In Authorized redirect URIs, select +Add URI and enter your redirect URI in the format
https://<YOUR-CONDUCTOR-CLUSTER-NAME>/integrations/oauth/callback. - Select + Create.
- Note the generated OAuth Client ID and secret, or download and save the JSON.
Enable Google Slides API
To enable Google Slides API access:
- Go to APIs & Services > Enabled APIs & services.
- Select + Enable APIs and services.
- Search for Google Slides API and enable it.
Step 2: Add an integration for Google Slides
After obtaining the credentials, add a Google Slides integration to your Conductor cluster.
To create an integration:
- Go to Integrations > Connected Apps from the left navigation menu on your Conductor cluster.
- Select + New integration.
- In the Productivity section, choose Google Slides.
- Select + Add and enter the following parameters:
| Parameter | Description | Required/Optional |
|---|---|---|
| Integration name | A name for the integration. | Required. |
| Scope | The OAuth2 scope for Google Slides API access. The scope you select determines the level of access Google grants to the integration. Supported values:
| Required. |
| OAuth Client ID | The OAuth client ID generated from Step 1. | Required. |
| OAuth Client Secret | The OAuth client secret generated from Step 1. | Required. |
| Default Presentation Id | The default presentation ID to use. To get the presentation ID, open the presentation in Google Slides. The ID is the string of characters at the end of the URL: https://docs.google.com/presentation/d/<YOUR-PRESENTATION-ID>. | Optional. |
| Description | A description of the integration. | Required. |

- (Optional) Toggle the Active button off if you don’t want to activate the integration instantly.
- Select Authorize.
This takes you to the Google sign-in page, where you can authorize the connection with your Google account. Once authorized, the integration is created successfully.
Step 3: Use Google Slides integration in workflows
Once the integration is ready, this can be used directly within the workflows.
To use Google Slides integration in a workflow:
- Go to Definitions > Workflow from the left navigation menu on your Conductor cluster.
- Select + Define workflow.
- In your workflow, select the (+) icon and select Connected Apps.

- In Add Task panel on the right, search for Google Slides, and select the integration created in Step 2.
The following operations are available for use with this integration.
| Operation | Description | Supported Integration Scopes |
|---|---|---|
| Create Presentation | Create a new Google Slides presentation with the provided title. |
|
| Add Slide | Add a new slide with a predefined layout to a presentation. |
|
| Add Text Box | Add a text box with content to a slide. |
|
| Get Presentation Slides | List slide page IDs and types in a presentation. |
|
| Get Presentation | Retrieve presentation metadata, including slides. |
|
| Get Page | Fetch a single page (slide) by its object ID. |
|
| Replace Text in Presentation | Replace all occurrences of text in a presentation. |
|
| Get Thumbnail | Fetch a page thumbnail URL. |
|
- Select the required operation, configure the parameters, and select Save > Confirm.
- Select Execute to run the workflow.
For the complete operations parameters and output reference, see Google Slides Operations Reference.