Webflow
Webflow is a web design and development platform that allows users to build responsive websites visually without writing code.
Categories: developer-tools
Type: webflow/v1
Connections
Version: 1
OAuth2 Authorization Code
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
clientId | Client Id | STRING | true | |
clientSecret | Client Secret | STRING | true |
Actions
Fulfill Order
Name: fulfillOrder
Updates an order’s status to fulfilled.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
siteId | Site ID | STRING | true | |
orderId | Order ID | STRING Depends OnsiteId | true |
Example JSON Structure
{ "label" : "Fulfill Order", "name" : "fulfillOrder", "parameters" : { "siteId" : "", "orderId" : "" }, "type" : "webflow/v1/fulfillOrder"}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
orderId | STRING | ID of the order. |
status | STRING | Status of the order. |
Output Example
{ "orderId" : "", "status" : ""}
Get Collection Item
Name: getCollectionItem
Get collection item in a collection.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
siteId | Site ID | STRING | true | |
collectionId | Collection ID | STRING Depends OnsiteId | true | |
itemId | Item ID | STRING Depends OncollectionId, siteId | true |
Example JSON Structure
{ "label" : "Get Collection Item", "name" : "getCollectionItem", "parameters" : { "siteId" : "", "collectionId" : "", "itemId" : "" }, "type" : "webflow/v1/getCollectionItem"}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
id | STRING | ID of the item. |
fieldData | OBJECT Properties{STRING(name), STRING(slug)} |
Output Example
{ "id" : "", "fieldData" : { "name" : "", "slug" : "" }}