Skip to main content

Bulk still working fine for images ?

  • February 19, 2026
  • 0 replies
  • 22 views

Forum|alt.badge.img

Hi,

Since yesterday (or the day before yesterday), I have the feeling that bulk is no longer working.
I am having problems importing images into a board, whereas everything was working fine before.

According to the documentation (hhttps://developers.miro.com/reference/create-items), when I try to import images onto my board, I get this error message:

 

"validationErrors": [
{
"code": "3.0210",
"message": "Value for scale should be greater than 0, found: 0.0"
}
]


However, when importing images, we cannot define a scale.
Here is the request: 
 

<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.miro.com/v2/boards/XXXX/items/bulk', [
'body' => '[{"type":"image","data":{"title":"XXXX","url":"https://XXXX.png"},"position":{"x":6051,"y":829},"parent":{"id":"XXXX"}}]',
'headers' => [
'accept' => 'application/json',
'authorization' => 'Bearer XXXX',
'content-type' => 'application/json',
],
]);

echo $response->getBody();


I tried changing the width, adding the height, or simply specifying only the height, but nothing works.​​​​​​​

Any idea what's going on?