I want to get the URL of the thumbnails of all pages of my Google Slides presentation (I know the presentation id). And I want to do this for many many slides presentation - I just want to give them a whole list of presentation ids and automate the process of getting all the thumbnail URLs of all the pages in the slides. There are two ways to do this:
- I have a google slides/presentation id. The presentation has say about 17 slides. From what I know the image thumbnail of the first slide would be:
https://slides.googleapis.com/v1/presentations/{presentationID}/pages/**p1**/thumbnail
The second would would be
https://slides.googleapis.com/v1/presentations/{presentationID}/pages/**p2**/thumbnail
And so on: p1 to p17.
If I put that in make.com’s Google Slides “Make an API call” and put the URL as “v1/presentations/{presentationID}/pages/p1/thumbnail” I will get as output the URL to the thumbnail image.
That’s all and good. I want the URL to the images (say 17) of each presentation slide to be put back into my airtable/aitable.ai. Is there a way to do this fast and using fewer operations. I know one way I could do this is using 17 google slides “make an api call” modules and put the different URL into each one “p1”, “p2”, etc. That would take a long time and many operations.
Is there a way to do this quicker? Is there a setting I could put under the “Body” or “query string” to automatically get the url for “p1”, “p2”, etc. until “p17” at one go?
- I know there’s the Google Slides “Get a Page/Thumbnail” module in make.com. I could also use that. Then I put “p1” or “p2” or “p3” under the “Page Object ID” field. But is there a way i could put all the “p1” to “p17” there somehow using some code? Or again, I can only do it one page/thumbnail at a time for this make.com module?
I’m just trying to quicken the process somehow. THanks!