Health Practice Management Software
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
Get the backlinks for a domain or URL with details for the referring pages (e.g., anchor and page title).
Get one backlink with the highest ahrefs_rank
per referring domain for a target URL or domain (with details for the referring pages including anchor and page title).
Get the referring domains that contain backlinks to the target URL or domain.
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: ``,
},
})
},
})
Ahrefs API taps into the vast data reserves of Ahrefs, a robust SEO tool, to programmatically access insights into backlink profiles, keyword rankings, and SEO health. With Pipedream's capabilities, you can automate SEO monitoring, integrate with content management systems, trigger alerts for new or lost backlinks, or gather intelligence for keyword research—all without manual intervention. This unlocks the potential for real-time SEO strategy adjustments and the integration of SEO data into broader business processes or analytics platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ahrefs: {
type: "app",
app: "ahrefs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://apiv2.ahrefs.com`,
params: {
output: `json`,
token: `${this.ahrefs.$auth.oauth_access_token}`,
from: `subscription_info`,
},
})
},
})