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" : ""
}
}
What to do if your action is not listed here?
If this component doesn't have the action you need, you can use Custom Action to create your own. Custom Actions empower you to define HTTP requests tailored to your specific requirements, allowing for greater flexibility in integrating with external services or APIs.
To create a Custom Action, simply specify the desired HTTP method, path, and any necessary parameters. This way, you can extend the functionality of your component beyond the predefined actions, ensuring that you can meet all your integration needs effectively.
Weaviate
Weaviate is an open-source vector search engine and database that enables efficient storage, retrieval, and management of high-dimensional data, often used in machine learning and AI applications.
Webhook
Webhook is a method utilized by applications to supply real-time information to other apps. Such a process usually delivers data immediately as and when it occurs. Webhook Trigger enables users to receive callouts whenever a service provides the option of distributing signals to a user-defined URL.