{ "url": "..." }
objects using Webflow-hosted image URLs; if needed, upload images first via the Assets API.To update a Multi Image field in Webflow using the CMS API, you need to pass an array of valid image URLs in a specific format.
Webflow's CMS API allows updating CMS items using the PATCH or PUT method at the endpoint:
PATCH https://api.webflow.com/v2/collections/{collection_id}/items/{item_id}
The value for a Multi Image field must be an array of objects, where each object has a url
property.
Example format:
```json
"multiImageFieldSlug": [
{ "url": "https://cdn.prod.website-files.com/path-to-image-1.jpg" },
{ "url": "https://cdn.prod.website-files.com/path-to-image-2.jpg" }
]
```
https://cdn.prod.website-files.com/
).application/json
).To update a Multi Image field via Webflow's API, send an array like this: [ { "url": "webflow-image-1.jpg" }, { "url": "webflow-image-2.jpg" } ]
. URLs must point to images hosted on Webflow’s CDN.