Typeform

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

Integrate the Typeform API with the Streak API

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

Create Box with Streak API on New Submission from Typeform API
Typeform + Streak
 
Try it
Create Task with Streak API on New Submission from Typeform API
Typeform + Streak
 
Try it
Link Boxes with Streak API on New Submission from Typeform API
Typeform + Streak
 
Try it
Update Box Field Value with Streak API on New Submission from Typeform API
Typeform + Streak
 
Try it
Update Box with Streak API on New Submission from Typeform API
Typeform + Streak
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Box Changed Pipeline (Instant) from the Streak API

Emit new event when a box changes pipelines.

 
Try it
Box Changed Stage (Instant) from the Streak API

Emit new event when a box's stage is updated in a pipeline.

 
Try it
New Box (Instant) from the Streak API

Emit new event when a new box is created in a pipeline.

 
Try it
New Comment (Instant) from the Streak API

Emit new event when a new comment is created within a pipeline.

 
Try it
Create a Form with the Typeform API

Creates a form with its corresponing fields. 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
Create Box with the Streak API

Create a new box in Streak. See the docs

 
Try it
Delete an Image with the Typeform API

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

 
Try it
Create Task with the Streak API

Create a new task in a box. See the docs

 
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 Streak

The Streak API taps into the core of Streak’s CRM functionality within Gmail, allowing users to automate interactions with pipeline data, such as leads, contacts, and sales opportunities. With Pipedream, you can harness this API to craft serverless workflows that react to events in Streak and connect with countless other services to streamline CRM tasks, sync data across platforms, or trigger communications based on pipeline changes.

Connect Streak

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