{ "image": "URL" }
under the correct field slug.To update a Multi-Image field using the Webflow CMS API, you need to pass an array of image URL objects, not just plain strings.
image
Key for Each URLFor each image in the array, wrap the URL inside an object with a single key: image
.
The correct format is:
```
"multi_image_field_slug": [
{ "image": "https://example.com/image1.jpg" },
{ "image": "https://example.com/image2.jpg" }
]
```
When making a PATCH request to update a CMS item, structure your body like this:
```
{
"fields": {
"multi_image_field_slug": [
{ "image": "https://example.com/image1.jpg" },
{ "image": "https://example.com/image2.jpg" }
]
}
}
```
Replace multi_image_field_slug
with the actual field slug from your CMS Collection.
To update a Webflow Multi-Image field via API, pass an array of objects like { "image": "URL" }
under the field slug. Ensure all image URLs are public and valid.