["id1", "id2"]) in the correct API field name.You're encountering a 400 ValidationError when updating a multi-reference field in Webflow via Integromat (now Make). This typically means the payload being sent is not formatted correctly, especially for multi-reference fields which require specific structure.
["itemID1", "itemID2"]
related_articles, input:["{{id1}}","{{id2}}"] (Replace {{id1}} and {{id2}} with Make variables or map them dynamically from a previous module)
null or an empty array ([]) can also cause validation errors if the field is required or expects an array with values.
PATCH request to:https://api.webflow.com/collections/{collectionid}/items/{itemid}Authorization: Bearer your_tokenaccept-version: 1.0.0Content-Type: application/json{ "fields": { "multireferencefield": ["itemid1", "itemid2"] } }
To fix the 400 ValidationError in Make when updating a Webflow multi-reference field, ensure you're passing an array of valid CMS item IDs, using the correct API field name, and formatting the request properly. Use Webflow’s own modules or a custom HTTP request to troubleshoot further.