Slides

Google integration · 6 node(s).

00Overview

Google Slides presentation operations

Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.

01Connecting Slides

Slides signs in with a Google account you connect to Flomation — there is no API key or secret to paste. Connect the account once and every Slides node picks it up automatically. Two optional fields let you steer it:

FieldTypeDetails
Google Account (email)string
Google OAuth Credentialcredential${credentials.GOOGLE_DRIVE}
i
Connect the Google account to your Flomation user once — the same grant covers every Google node, so you do not repeat it per flow. The optional Google OAuth Credential field never shows a token: it references a managed credential (e.g. ${credentials.GOOGLE_DRIVE}), not an environment secret. Leave both fields blank and the node just uses your connected account.

02Add

Add Image to Slide

google/slides/add_image · Action

Add an image to a Google Slides slide

FieldTypeDetails
Presentation IDstringRequired
Slide IDstringRequired
Image URLstringRequired
X Position (points)integer100
Y Position (points)integer100
Width (points)integer400
Height (points)integer300

Returns: tool_result, image_id, success, error

Add Slide

google/slides/add_slide · Action

Add a new slide to a Google Slides presentation

FieldTypeDetails
Presentation IDstringRequired
Layoutstringchoices: Blank, Title, Title and Body, Title and Two Columns, Title Only, Section Header
Insert Position (0-based)integer

Returns: tool_result, slide_id, success, error

Add Text to Slide

google/slides/add_text · Action

Insert text into a slide shape

FieldTypeDetails
Presentation IDstringRequired
Slide/Shape IDstringRequired
TexttextRequired

Returns: tool_result, success, error

03Create

Create Presentation

google/slides/create · Action

Create a new Google Slides presentation

FieldTypeDetails
TitlestringRequiredMy Presentation

Returns: tool_result, presentation_id, presentation_url, success, error

04Get

Get Presentation

google/slides/get · Action

Get metadata and slides for a Google Slides presentation

FieldTypeDetails
Presentation IDstringRequired

Returns: tool_result, title, slides, slide_count, presentation, success, error

Get Slide

google/slides/get_slide · Action

Get the content and elements of a specific slide

FieldTypeDetails
Presentation IDstringRequired
Slide IDstringRequired

Returns: tool_result, slide, elements, element_count, success, error

05Notes & Limitations

Behaviours and constraints worth knowing before you build with these nodes.