View as Markdown
Acuity Scheduling icon

Acuity Scheduling ACTION

Check Availability Times

Validate available times for an appointment. 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 Check 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-check-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.

Check Availability Times inputs
Property Type Description
date Date string
Date to check availability for. E.g. 2016-02-03T14:00:00-0800
Required
appointmentTypeId Appointment Type ID string
Appointment type to check availability time for
Required Dynamic
calendarId Calendar ID string
Calendar to check availability time for
Optional Dynamic

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-check-availability-times
Version
0.0.2
App
Acuity Scheduling
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes