This is an overview of the changes to the Webflow APIs and related tools. To filter the list, select one or more tags.
Improved control over form submission data
The List form submissions by site endpoint now lets you retrieve form submissions across your entire site. Unlike the existing List Form Submissions endpoint, this endpoint:
- Takes
siteIdas a path parameter - Accepts
elementIdas a query parameter to filter byformElementId - Works seamlessly with forms in components, where each component instance gets a unique
formIdbut shares the sameformElementId
To use this endpoint, first get the formElementId from the List Forms API, then pass both the siteId and formElementId to retrieve all submissions for a specific form, even when it appears in multiple component instances.
Work with pseudo-states in the Designer
Work with pseudo-states in the Designer
Get the current pseudo-state of the designer and subscribe to changes in the pseudo-state. This is helpful for showing specific style properties based on a pseudo-state like :hover, :focus, or :active.
- Get the pseudo-state of the designer
Added thewebflow.getPseudoMode()method to return the pseudo-class state of the designer. - Subscribe to pseudo-state changes
Added options to thewebflow.subscribe()method to subscribe to changes in the pseudo-state of the designer.
Get additional site details
- Get site information
ThegetSiteInfomethod now returns thedomainsobject in the response.