05.01.2024
Data API
Live Content Management: The latest updates introduce specific endpoints for managing CMS items that are live on a site, ensuring a seamless distinction from content in staging or draft states.
Designer API
Bulk create Elements: Use webflow.elementBuilder
when you need to deploy large or complex designs quickly. This method is especially valuable in scenarios where performance is critical, and the simplicity of the elements aligns with your design objectives.
Create and manage Assets: Easily create assets on your site and manage them with new API endpoints. Retrieve assets by ID and access asset URLs directly to streamline your digital asset management.
Deepen CMS integration: New endpoints allow you to fetch the collection ID and name for pages generated by CMS collections, facilitating a more integrated and automated approach to managing your CMS content.
Data API
What’s New
CMS Items
GET
/collections/{collection_id}/items/{item_id}/live
Get live CMS item
GET
/collections/{collection_id}/items/live
List live CMS items
POST
/collections/{collection_id}/items/live
Create Collection Item (Live)
PATCH
/collections/{collection_id}/items/{item_id}/live
Update Collection Item (Live)
DELETE
/collections/{collection_id}/items/{item_id}/live
Delete Collection Item (Live)
Designer API
What’s New
Elements
webflow.elementBuilder
Create a root element for a new element structure
Assets
webflow.createAsset
Create an asset on a site.
asset.getAssetById
Get Asset by its ID
asset.getUrl
Get Asset’s URL
Pages
page.getCollectionId
Get collection ID of a page generated by a CMS collection
page.getCollectionName
Get collection name of a page generated by a CMS collection