Create Collection Item(s)
Create Collection Item(s)
Authentication
Bearer authentication of the form Bearer <token>, where token is your auth token.
Path parameters
Request
Details of the item(s) to create
A new Collection Item that will be created in the draft state.
A Collection Item represents a single entry in your collection. Each item includes:
- System metadata - Automatically managed fields like IDs and timestamp
- Status flags - Controls for managing content state:
isDraft,isArchived - Content fields - Stored in
fieldData. Each item needs anameandslug, and may include additional fields matching your collection’s schema definition. - Components in Rich Text - Rich Text field values are HTML strings that may contain Webflow component instances as
<wf-component>custom-element markup. On read, instances appear inline; on write, the same markup creates or updates the instance. Scalar props areprop-<propId>="…"attributes; text and rich-text props are nested<wf-prop name="<propId>" type="text|richtext">…</wf-prop>children. Available behind the components-in-Rich-Text beta. A write is rejected with400if a component can’t be resolved, isn’t allowed in Rich Text (e.g. contains a Slot or Collection List), includes an unknown prop, or attempts to create a new instance in a secondary locale.
component-idand eachprop-<propId>are specific to your site’s component definition. To obtain them, list your site’s components withGET /v2/sites/{site_id}/components(andGET /v2/sites/{site_id}/components/{component_id}/propertiesfor prop IDs), orGETan item that already contains the component and reuse the returned<wf-component>markup. Omitdata-w-idwhen creating an instance (the server assigns it) and keep the returneddata-w-idwhen updating one.