The Cliniko API opens a gateway to healthcare practice management by allowing you to interact with patient data, appointments, treatments, and more. With Pipedream, you can automate mundane tasks, ensuring that patient care remains front and center. Think of syncing appointment data with other calendars, sending personalized follow-up emails, or even managing inventory based on treatment records, all streamlined on a serverless platform.
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: ``,
},
})
},
})
Automated Patient Follow-up: After an appointment is completed in Cliniko, trigger a Pipedream workflow that sends a follow-up email through SendGrid, thanking the patient and providing care instructions or a feedback survey link.
Appointment Syncing with Google Calendar: Use Pipedream to watch for new or updated appointments in Cliniko and automatically mirror these changes in a specified Google Calendar, ensuring seamless scheduling visibility across different platforms.
Inventory Management Post-Treatment: Configure a Pipedream workflow to update inventory levels in a tool like Airtable or Google Sheets when a treatment is recorded in Cliniko, which helps in maintaining adequate stock levels for medical supplies.
Emit new event when a booking is created in Cliniko. See the documentation
Emit new event when a contact is created in Cliniko. See the documentation
Cliniko uses API keys for authentication. When you connect your Cliniko account, Pipedream securely stores the keys so you can easily authenticate to Cliniko APIs in both code and no-code steps.