.withRawResponse(). Example:{
"data": { "sites": [] },
"rawResponse": {
"headers": {},
"redirected": false,
"status": 200,
"statusText": "OK",
}
}
skipInvalidFiles boolean flag to skip any potentially problematic file attachments on CMS items and continue processing the requestclient.collections.items.createItem(collectionId, {
skipInvalidFiles: true,
// ...
})
New: You can pass in a branchId into the request for updating Component content/properties on branched pages.
client.components.updateContent(siteId, componentId, { localeId: "my-secondary-locale-id", branchId: "my-branch-id" })branchId for a given page can be retrieved via the List Pages API (client.pages.list()) if a page has a branchNew: Filter by lastPublished timestamps when listing CMS Items. Example:
await wf.collections.items.listItems(collectionId, { lastPublished: {
gte: new Date("2024-01-01T00:00:00Z"),
}});
validations property in the response of the Get Collection Details API (client.collections.get())pages.updatePageSettings() API to only include page fields that can be updatedProductFieldData. categories -> categoryFull Changelog: https://github.com/webflow/js-webflow-api/compare/v3.1.4...v3.2.0
Fetched May 1, 2026