Cliniko

Health Practice Management Software

Integrate the Cliniko API with the Go API

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

Get Patient with the Cliniko API

Get the details of a patient by patient ID.

 
Try it
Run Go Code with the Go API

Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.

 
Try it

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: ``,
      },
    })
  },
})

Connect Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"

	pd "github.com/PipedreamHQ/pipedream-go"
)

func main() {
	// Access previous step data using pd.Steps
	fmt.Println(pd.Steps)

	// Export data using pd.Export
	data := make(map[string]interface{})
	data["name"] = "Luke"
	pd.Export("data", data)
}