Google Slides Page ID Automation

Hello!

New to Pipedream!

I’m curious if anyone knows of a way to pass Google Slides Object IDs through to a Google Sheet using the find_presentation step.

Hello @jsholiday1234,

First off, welcome to Pipedream! Happy to have you!

I think you can use Pipedream’s expression for this. In the Google Sheet - Create Single Row/Multiple Rows action, you can use expression to reference to the Google Slide - Find Presentation action result, and also transform it to get the Object Id {{steps.find_presentation.$return_value.slides.map(slide => slide.objectId)}}. For example:

Pipedream expression allow you to use Node.js code to reference/transform the input as you like.