Content-Type as application/json and include the Authorization token.To update a Multi Image field in Webflow using the API, you need to pass an array of URLs in a specific format.
application/json.
"multiImageField": ["url1", "url2", "url3"].
```json
{
"fields": {
"name": "Item Name",
"multiImageField": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
]
}
}
```
https://api.webflow.com/collections/{collectionid}/items/{itemid}.
To update a Multi Image field in Webflow via its API, structure your JSON payload with the image URLs in an array. Make a PUT request with the correctly formatted JSON to ensure the field updates appropriately.