Google Slide Upload Pictures

I have a webhook that collects data from an application including a pdf as a link. I want to insert the PDF Pages into a presentation. The PDF can have different amounts of pages. Every Page needs to be entered as a Photo into an newly created page in the Presentation.

The google slides pages are created but only the first foto is added. This means if there are three pages in the PDF. Only the first Page is added as a foto to every page.

Hey Chiara,

aggregating to an array and then using a repeater to go through the items of the array one at a time is a waste of operations. You aggregate an array only if you need to process the entire array at the same time.

Which in your case you should be able to do by toggling the Map button next to Values and mapping the entire array, provided it follows the same structure as the Google Slides module is expecting.

Now if you want to process the images one at a time, then delete the aggregator and repeater modules and map the PDFco module output directly in the Google Slides module.

Hi Stoyan_Vatov

I am still very much a beginner and very thankful for your help.
I deleted the Iteration and repeater and get the point :wink:

I am still struggling to map the Image URL so that it doesnt just give me the first Image for all the placeholders {{foto}}.

This is basically the output-structure:

My idea was to use the Bundle number to determin which URL is take. So I used:

map(Bundle order postition; URL);

It doestnt work. Maybe you have another tip?