Lodol Docs

Webflow

API actions for the Webflow integration.

Webflow

Manage your Webflow sites and CMS collections.


Create Webflow collection item

Create a new item in a Webflow CMS collection.

Parameters

ParameterTypeRequiredDescription
collection_idstringYesThe Webflow collection to add the item to.
fieldsobjectYesThe fields and values to save for the new item.
livebooleanNoSet to true to publish the item right away.

Response

{
  "createdOn": "mock_value",
  "id": "mock_value",
  "name": "mock_value",
  "slug": "mock_value"
}

List Webflow collections

List the CMS collections in a Webflow site.

Parameters

ParameterTypeRequiredDescription
site_idstringYesThe Webflow site to list collections from.

Response

[
  {}
]

List Webflow collection items

List the items in a Webflow CMS collection.

Parameters

ParameterTypeRequiredDescription
collection_idstringYesThe Webflow collection to list items from.

Response

[
  {}
]

List Webflow sites

List the Webflow sites in your account.

Response

[
  {}
]

Publish Webflow items

Publish one or more items from a Webflow collection.

Parameters

ParameterTypeRequiredDescription
site_idstringYesThe Webflow site to publish to.
collection_idstringYesThe Webflow collection that contains the items.
item_idsarrayYesThe collection items to publish.

Response

{
  "errors": [
    {}
  ],
  "publishedItemIds": [
    "mock_value"
  ]
}

Update Webflow collection item

Update an existing item in a Webflow CMS collection.

Parameters

ParameterTypeRequiredDescription
collection_idstringYesThe Webflow collection that contains the item.
item_idstringYesThe collection item to update.
fieldsobjectYesThe fields and values to change.
livebooleanNoSet to true to publish the item after updating.

Response

{
  "id": "mock_value",
  "name": "mock_value",
  "slug": "mock_value",
  "updatedOn": "mock_value"
}

On this page