The TidyCal API allows for scheduling automation, linking your calendar to create and manage bookings. In Pipedream, you can harness this API to create event-driven workflows, such as syncing with other calendar services, triggering reminders, or connecting with CRM systems to streamline your scheduling process. Pipedream's serverless platform enables you to build and run these workflows efficiently, without the need to manage infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tidycal: {
type: "app",
app: "tidycal",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://tidycal.com/api/me`,
headers: {
Authorization: `Bearer ${this.tidycal.$auth.oauth_access_token}`,
},
})
},
})
Sync TidyCal with Google Calendar: When a new booking is made via TidyCal, automatically create an event in Google Calendar. Use this to keep all your appointments in sync across different calendar services.
Send Custom Email Reminders: Set up a workflow that sends personalized email reminders to your clients via SendGrid, Mailgun, or Gmail before their appointment. Include details like date, time, and preparation instructions.
Integrate with CRM Systems: Upon a new TidyCal booking, add or update the client's details in a CRM like Salesforce or HubSpot. This can help in maintaining updated customer information and streamline follow-ups.
Triggered when an existing appointment is cancelled by a client or by the owner. See the documentation
Triggered when a new appointment is booked using TidyCal. See the documentation
TidyCal uses OAuth authentication. When you connect your TidyCal account, Pipedream will open a popup window where you can sign into TidyCal and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any TidyCal API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://tidycal.com/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://tidycal.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://tidycal.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}