Typeform

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

Integrate the Typeform API with the Clockify API

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

Add Members To Project with Clockify API on New Submission from Typeform API
Typeform + Clockify
 
Try it
Add Task To Project with Clockify API on New Submission from Typeform API
Typeform + Clockify
 
Try it
Create Project with Clockify API on New Submission from Typeform API
Typeform + Clockify
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Add Members To Project with the Clockify API

Adds member(s) to a project in Clockify. 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
Add Task To Project with the Clockify API

Adds a task to a project in Clockify. 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
Create Project with the Clockify API

Creates a new project in Clockify. See the documentation

 
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 Clockify

Clockify is a time tracking and timesheet app that provides a straightforward way to track work hours across projects. With the Clockify API on Pipedream, you can automate time tracking, create detailed reports, manage projects, and sync timesheet data with other apps. Using Pipedream, you can create workflows that trigger on events in Clockify or other apps, process the data, and perform actions like logging time automatically, sending notifications, or creating invoices based on tracked time.

Connect Clockify

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: {
    clockify: {
      type: "app",
      app: "clockify",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.clockify.me/api/v1/user`,
      headers: {
        "X-Api-Key": `${this.clockify.$auth.api_key}`,
        "content-type": `application/json`,
      },
    })
  },
})