Acuity Scheduling API allows you to tap into the functionality of Acuity Scheduling, a cloud-based appointment scheduling software. With this API on Pipedream, you can automate appointment creation, modifications, and cancellations, as well as sync customer data across your tech stack. The API lets you fetch detailed information about schedules, available time slots, and calendar events. Create dynamic, real-time integrations with CRMs, email marketing platforms, or payment gateways to streamline your scheduling and business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
acuity_scheduling: {
type: "app",
app: "acuity_scheduling",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://acuityscheduling.com/api/v1/me`,
headers: {
Authorization: `Bearer ${this.acuity_scheduling.$auth.oauth_access_token}`,
},
})
},
})
Appointment Confirmation Emails: Automate the process of sending customized confirmation emails via SendGrid or another email service when a new appointment is scheduled in Acuity. You can include appointment details, and even a calendar invite, ensuring clients have all the information they need.
CRM Contact Update: When a new client books an appointment, automatically create or update their contact details in a CRM like Salesforce. This workflow ensures that client information is always current and can trigger follow-up tasks or lead nurturing processes within the CRM.
Invoice Generation: After an appointment is completed, trigger an invoice creation in accounting software such as QuickBooks. This workflow can include client details, services rendered, and pricing, and send the invoice straight to the client, streamlining the billing process.
Blocks a specific time slot on your schedule to prevent the scheduling of any appointments during this particular time range. See the documentation
Retrieves existing appointments using the client's information, allowing you to track all the appointments associated with a specific client. See the documentation
Acuity Scheduling uses OAuth authentication. When you connect your Acuity Scheduling account, Pipedream will open a popup window where you can sign into Acuity Scheduling and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Acuity Scheduling API.
Pipedream requests the following authorization scopes when you connect your account:
api-v1
GET
https://acuityscheduling.com/oauth2/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://acuityscheduling.com/oauth2/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}}