Typeform

Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.

Integrate the Typeform API with the Sellercloud API

Setup the Typeform API trigger to run a workflow which integrates with the Sellercloud API. Pipedream's integration platform allows you to integrate Typeform and Sellercloud remarkably fast. Free for developers.

Adjust Inventory with Sellercloud API on New Submission from Typeform API
Typeform + Sellercloud
 
Try it
Create Product with Sellercloud API on New Submission from Typeform API
Typeform + Sellercloud
 
Try it
Update Order Status with Sellercloud API on New Submission from Typeform API
Typeform + Sellercloud
 
Try it
Create a Form with Typeform API on Inventory Updated from Sellercloud API
Sellercloud + Typeform
 
Try it
Create a Form with Typeform API on New Order Created from Sellercloud API
Sellercloud + Typeform
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Inventory Updated from the Sellercloud API

Emit new event when an item's inventory level changes. See the documentation

 
Try it
New Order Created from the Sellercloud API

Emit new event when a new order is created. See the documentation

 
Try it
Adjust Inventory with the Sellercloud API

Changes the inventory level of a specific product. See the documentation

 
Try it
Create a Form with the Typeform API

Creates a form with its corresponing fields. See the docs here

 
Try it
Create Product with the Sellercloud API

Creates a new product. See the documentation

 
Try it
Create an Image with the Typeform API

Adds an image in your Typeform account. See the docs here

 
Try it
Delete an Image with the Typeform API

Deletes an image from your Typeform account. See the docs here

 
Try it

Overview of Typeform

The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.

Connect Typeform

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    typeform: {
      type: "app",
      app: "typeform",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.typeform.com/me`,
      headers: {
        Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Sellercloud

The Sellercloud API taps into a robust e-commerce platform that streamlines multichannel sales operations, inventory management, and order fulfillment. By integrating Sellercloud with Pipedream, you can automate tasks like syncing inventory levels, managing orders, and updating product listings across various channels. With Pipedream's serverless platform, you can create workflows that react to events in Sellercloud or initiate actions based on triggers from other apps.

Connect Sellercloud

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sellercloud: {
      type: "app",
      app: "sellercloud",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.sellercloud.$auth.api_url}/rest/api/orders`,
      headers: {
        Authorization: `Bearer ${this.sellercloud.$auth.oauth_access_token}`,
      },
    })
  },
})