Publicacion Error "BundleValidationError: Array of objects expected in parameter ‚requests‘" al crear slide desde plantilla de Google Slides

:us: Hello community,

I am automating the creation of a weekly B2B price list in Google Slides using a template, from data extracted from Google Sheets. The scenario in Make includes the following modules:

  1. Google Sheets - Get Range Values.

  2. Tools - Set variables 3.

  3. Google Slides - Create Presentation from Template 4.

  4. Google Slides - Create Slide from Template Slide (where the error occurs)

I am using this block in the “Values” field of the Create slide from template slide module:

json

CopyEdit


[

{

"objectId": "product_1",

"text":"{{1.product_1}}}"

},

{

"objectId": "price_1",

"text":"{{1.price_1}}"

},

{

"objectId": "unit_1",

"text":"{{1.unit_1}}}"

}

]

The error that appears is:

BundleValidationError

Validation failed for 1 parameter(s)

→ Array of objects expected in parameter requests.

I already tried:

  • Verify that the objectId match those in the Google Slides template.

  • Test with only one object at a time.

  • Enable/disable the Map toggle.

  • Use Set Variable to fetch data from Google Sheets individually.

  • Use double brace {{}} and also normal quotes.

I attach screenshots for better visual context.

Has anyone faced this problem when using Create Slide from Template Slide with multiple dynamic variables?

Is it possible that I am malforming the array or missing some property?

Thanks in advance for any guidance or correction.


Hola comunidad,

Estoy automatizando la creación de una lista de precios semanal B2B en Google Slides usando un template, a partir de datos extraídos desde Google Sheets. El escenario en Make incluye los siguientes módulos:

  1. Google Sheets – Get Range Values
  2. Tools – Set variables
  3. Google Slides – Create Presentation from Template
  4. Google Slides – Create Slide from Template Slide (donde ocurre el error)

Estoy usando este bloque en el campo “Values” del módulo Create slide from template slide:

json

CopiarEditar

[
  {
    "objectId": "producto_1",
    "text": "{{1.producto_1}}"
  },
  {
    "objectId": "precio_1",
    "text": "{{1.precio_1}}"
  },
  {
    "objectId": "unidad_1",
    "text": "{{1.unidad_1}}"
  }
]

El error que aparece es:

BundleValidationError
Validation failed for 1 parameter(s)
→ Array of objects expected in parameter requests

Ya probé:

  • Verificar que los objectId coincidan con los de la plantilla de Google Slides.
  • Probar con solo un objeto a la vez.
  • Activar/desactivar el Map toggle.
  • Usar Set Variable para traer datos de Google Sheets de forma individual.
  • Usar doble llave {{}} y también comillas normales.

Adjunto capturas para mejor contexto visual.


¿Alguien ha enfrentado este problema al usar Create Slide from Template Slide con múltiples variables dinámicas?
¿Es posible que esté malformando el array o esté faltando alguna propiedad?

Gracias de antemano por cualquier orientación o corrección.

Hello, I’m having the same problem. Did you find a solution?