Typeform

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

Integrate the Typeform API with the Clientary API

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

Create Client with Clientary API on New Submission from Typeform API
Typeform + Clientary
 
Try it
Create Estimate with Clientary API on New Submission from Typeform API
Typeform + Clientary
 
Try it
Create Expense with Clientary API on New Submission from Typeform API
Typeform + Clientary
 
Try it
Create Invoice with Clientary API on New Submission from Typeform API
Typeform + Clientary
 
Try it
Create Task with Clientary API on New Submission from Typeform API
Typeform + Clientary
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
New Client Created from the Clientary API

Emit new events when a new client was created. See the docs

 
Try it
New Contact Created from the Clientary API

Emit new events when a new contact was created. See the docs

 
Try it
New Estimate Created from the Clientary API

Emit new events when a new estimate was created. See the docs

 
Try it
New Expense Created from the Clientary API

Emit new events when a new expense was created. See the docs

 
Try it
Create Client with the Clientary API

Creates a new client. See docs here

 
Try it
Create a Form with the Typeform API

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

 
Try it
Create Estimate with the Clientary API

Creates a new estimate. See 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 Expense with the Clientary API

Creates a new expense. See 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 Clientary

The Clientary API allows you to automate and integrate Clientary's project management, time tracking, and invoicing functionalities within Pipedream. By leveraging this API, you can create custom workflows to streamline operations, such as syncing new invoices with accounting software, triggering notifications based on project updates, or automating time tracking entries. Pipedream acts as the glue, enabling you to connect Clientary with hundreds of other apps to create sophisticated, serverless workflows tailored to your business needs.

Connect Clientary

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    clientary: {
      type: "app",
      app: "clientary",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.clientary.$auth.domain}.clientary.com/api/v2/staff`,
      headers: {
        "accept": `application/json`,
      },
      auth: {
        username: `${this.clientary.$auth.api_token}`,
        password: `${this.clientary.$auth.api_token}`,
      },
    })
  },
})