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
| Parameter | Type | Required | Description |
|---|---|---|---|
collection_id | string | Yes | The Webflow collection to add the item to. |
fields | object | Yes | The fields and values to save for the new item. |
live | boolean | No | Set 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
| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | The Webflow site to list collections from. |
Response
[
{}
]List Webflow collection items
List the items in a Webflow CMS collection.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
collection_id | string | Yes | The 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
| Parameter | Type | Required | Description |
|---|---|---|---|
site_id | string | Yes | The Webflow site to publish to. |
collection_id | string | Yes | The Webflow collection that contains the items. |
item_ids | array | Yes | The collection items to publish. |
Response
{
"errors": [
{}
],
"publishedItemIds": [
"mock_value"
]
}Update Webflow collection item
Update an existing item in a Webflow CMS collection.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
collection_id | string | Yes | The Webflow collection that contains the item. |
item_id | string | Yes | The collection item to update. |
fields | object | Yes | The fields and values to change. |
live | boolean | No | Set to true to publish the item after updating. |
Response
{
"id": "mock_value",
"name": "mock_value",
"slug": "mock_value",
"updatedOn": "mock_value"
}