Typeform

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

Integrate the Typeform API with the Sendoso API

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

Generate eGift Link with Sendoso API on New Submission from Typeform API
Typeform + Sendoso
 
Try it
Get Send Status with Sendoso API on New Submission from Typeform API
Typeform + Sendoso
 
Try it
Send A Physical Gift With Address Confirmation with Sendoso API on New Submission from Typeform API
Typeform + Sendoso
 
Try it
Create a Form with Typeform API on New Send Created from Sendoso API
Sendoso + Typeform
 
Try it
Create a Form with Typeform API on New Send Status Updated from Sendoso API
Sendoso + Typeform
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
New Send Created from the Sendoso API

Emit new event when a new send is created. See docs here

 
Try it
New Send Status Updated from the Sendoso API

Emit new event when a send status is updated. See docs here

 
Try it
Generate eGift Link with the Sendoso API

Generate a new E-Gift link See the docs here

 
Try it
Create a Form with the Typeform API

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

 
Try it
Get Send Status with the Sendoso API

Track all sent gifts and retrieve analytics information regarding sent gift. See the docs here

 
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

With the Typeform API, you can easily create beautiful, interactive forms that
allow people to share their information with you in an engaging way. Here are
some examples of what you can build with the Typeform API:

  • A contact form for your website that allows people to easily get in touch
    with you
  • An order form for your product or service that allows people to place orders
    easily and securely
  • A survey form that allows you to collect data and feedback from people
  • A registration form for your event or conference that allows people to sign
    up easily and securely

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 Sendoso

The Sendoso API provides an easy-to-use platform to quickly and effectively
send physical gifts, cards, and other items to your customers, vendors, or
other key stakeholders. With the Sendoso API, you can build powerful customer
engagement campaigns that include personalized physical gifts and gestures.

The following are some of the things you can build using the Sendoso API:

  • Personalized bulk mailing campaigns, such as holiday cards or special
    occasion items
  • Targeted customer experience campaigns that incorporate a unique physical
    gift directly related to the customer journey
  • Automated thank you packages for key customers and vendors
  • Email programs that include personalized physical products
  • Invitation and promotional campaigns that incorporate physical gifts
  • Corporate gifting programs for employee recognition or development

Connect Sendoso

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: {
    sendoso: {
      type: "app",
      app: "sendoso",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.sendoso.com/api/v3/me`,
      headers: {
        Authorization: `Bearer ${this.sendoso.$auth.oauth_access_token}`,
      },
    })
  },
})