Responsive web design tool
Emit new event when a new form is submitted. See the docs here
Emit new event when a collection item is created. See the docs here
Emit an event when an e-commerce inventory level changes
Emit an event when an e-commerce order is changed
Emit an event when a collection item is deleted
With the Webflow API, you can build a number of different applications that can
help you manage your website more effectively. Some examples of applications
that can be built using the Webflow API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
webflow: {
type: "app",
app: "webflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.webflow.com/info`,
headers: {
Authorization: `Bearer ${this.webflow.$auth.oauth_access_token}`,
"accept-version": `1.0.0`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})