Typeform

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

Integrate the Typeform API with the Cliniko API

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

Get Patient with Cliniko API on New Submission from Typeform API
Typeform + Cliniko
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Get Patient with the Cliniko API

Get the details of a patient by patient ID.

 
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
Delete an Image with the Typeform API

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

 
Try it
Delete Form with the Typeform API

Select a form to be deleted. 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 Cliniko

The Cliniko API allows developers to access content and features from the
Cliniko platform. Using the API, developers can build applications that can do
the following:

  • View and search for patient records
  • View and search for appointments
  • Manage patient files
  • Send SMS and email messages
  • Generate clinical reports
  • And more!

Connect Cliniko

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    cliniko: {
      type: "app",
      app: "cliniko",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.${this.cliniko.$auth.shard}.cliniko.com/v1/users`,
      headers: {
        "User-Agent": `Pipedream (support@pipedream.com)`,
        "Accept": `application/json`,
      },
      auth: {
        username: `${this.cliniko.$auth.api_key}`,
        password: ``,
      },
    })
  },
})