View as Markdown
Acuity Scheduling icon

Acuity Scheduling ACTION

Get Availability Times

Return available times for a date and appointment type. See the documentation
  • Action
  • Read only
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Acuity Scheduling account once, then configure and run Get Availability Times from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "acuity_scheduling-get-availability-times",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    acuity_scheduling: { authProvisionId: "apn_xxxxxxx" },
    date: "Date",
    appointmentTypeId: "Appointment Type ID",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Get Availability Times inputs
Property Type Description
date Date string
Date to get availability times for. E.g. 2016-02-03
Required
appointmentTypeId Appointment Type ID string
Appointment type to get availability times for
Required Dynamic
calendarId Calendar ID string
Calendar to get availability times for
Optional Dynamic
timezone Timezone string
Timezone of the client. E.g. America/Los_Angeles
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
acuity_scheduling-get-availability-times
Version
0.0.2
App
Acuity Scheduling
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes