Hello everyone,
I’m new to Make and I’m encountering an issue with posting an image carousel on Pinterest.
Goal:
I have a scenario that retrieves multiple image URLs from Airtable, filters out empty ones, and sends them to Pinterest as a carousel using the “Multiple Image URLs” option.
Issue faced:
- Make only sends one image instead of multiple.
- When I use
{{ArrayAggregator.array}}
, Pinterest rejects the images. - I’ve tested different formats (
{{52.array[].value}}
,map(item => item.value)
, etc.), but nothing works.
Current setup:
- Airtable - Get a Record → Retrieves 4 image URLs.
- Iterator → Iterates through the URLs.
- Filter → Excludes empty values.
- Array Aggregator → Groups valid image URLs.
- Pinterest - Create a Pin
- Source Type: Multiple Image URLs
- Items:
{{52.array[].value}}
Questions:
- What is the correct format to send multiple images to Pinterest?
- How can I ensure the Array Aggregator properly generates a clean list of URLs?
Thank you in advance for your help! Any suggestions are greatly appreciated.
My blueprint : blueprint.json (45.7 KB)