← Paigo + Acuity Scheduling integrations

Get Appointments with Acuity Scheduling API on New Invoice (Instant) from Paigo API

Pipedream makes it easy to connect APIs for Acuity Scheduling, Paigo and 2,800+ other apps remarkably fast.

Trigger workflow on
New Invoice (Instant) from the Paigo API
Next, do this
Get Appointments with the Acuity Scheduling API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Paigo trigger and Acuity Scheduling action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Invoice (Instant) trigger
    1. Connect your Paigo account
    2. Optional- Select a Environment
  3. Configure the Get Appointments action
    1. Connect your Acuity Scheduling account
    2. Optional- Configure Min Date
    3. Optional- Configure Max Date
    4. Optional- Select a Calendar ID
    5. Optional- Select a Appointment Type ID
    6. Optional- Configure Canceled
    7. Optional- Configure Show All
    8. Optional- Configure Exclude Forms
    9. Optional- Configure Email
    10. Optional- Configure First Name
    11. Optional- Configure Last Name
    12. Optional- Configure Phone
    13. Optional- Configure Max Results
    14. Optional- Select a Direction
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event whenever a new invoice is generated. [See the documentation](http://www.api.docs.paigo.tech/#tag/Webhooks/operation/Subscribe%20a%20Webhook)
Version:0.0.1
Key:paigo-new-invoice-instant

Paigo Overview

The Paigo API offers a suite of financial tools for expense tracking, budgeting, and financial planning. In Pipedream, you can utilize these capabilities to automate personal finance management, analyze spending habits, and receive real-time notifications on financial events. Paigo's API can be integrated with various apps on Pipedream to streamline financial operations, from syncing transactions with accounting software to triggering alerts when budgets are nearing their limits.

Trigger Code

import common from "../common/base.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  ...common,
  key: "paigo-new-invoice-instant",
  name: "New Invoice (Instant)",
  description: "Emit new event whenever a new invoice is generated. [See the documentation](http://www.api.docs.paigo.tech/#tag/Webhooks/operation/Subscribe%20a%20Webhook)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    getWebhookType() {
      return "INVOICE_CREATED";
    },
    generateMeta(invoice) {
      return {
        id: invoice.invoiceId,
        summary: `${invoice.message} ${invoice.invoiceId}`,
        ts: Date.now(),
      };
    },
  },
  sampleEmit,
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
PaigopaigoappThis component uses the Paigo app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
EnvironmentenvironmentstringSelect a value from the drop down menu:productionsandbox

Trigger Authentication

Paigo uses OAuth authentication. When you connect your Paigo account, Pipedream will open a popup window where you can sign into Paigo and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Paigo API.

Pipedream requests the following authorization scopes when you connect your account:

About Paigo

SaaS Billing on Autopilot with Full Flexibility.

Action

Description:Return a list of appointments. [See the documentation](https://developers.acuityscheduling.com/reference/get-appointments)
Version:0.0.1
Key:acuity_scheduling-get-appointments

Acuity Scheduling Overview

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.

Action Code

import acuityScheduling from "../../acuity_scheduling.app.mjs";

export default {
  key: "acuity_scheduling-get-appointments",
  name: "Get Appointments",
  description: "Return a list of appointments. [See the documentation](https://developers.acuityscheduling.com/reference/get-appointments)",
  version: "0.0.1",
  type: "action",
  props: {
    acuityScheduling,
    minDate: {
      type: "string",
      label: "Min Date",
      description: "Show appointments after this date (YYYY-MM-DD)",
      optional: true,
    },
    maxDate: {
      type: "string",
      label: "Max Date",
      description: "Show appointments before this date (YYYY-MM-DD)",
      optional: true,
    },
    calendarId: {
      propDefinition: [
        acuityScheduling,
        "calendarId",
      ],
      optional: true,
    },
    appointmentTypeId: {
      propDefinition: [
        acuityScheduling,
        "appointmentTypeId",
      ],
      optional: true,
    },
    canceled: {
      type: "boolean",
      label: "Canceled",
      description: "Show only canceled appointments",
      optional: true,
    },
    showall: {
      type: "boolean",
      label: "Show All",
      description: "Show both canceled and scheduled appointments",
      optional: true,
    },
    excludeForms: {
      type: "boolean",
      label: "Exclude Forms",
      description: "Don't include intake forms in the response object (speeds up the response)",
      optional: true,
    },
    email: {
      type: "string",
      label: "Email",
      description: "Filter by client email address",
      optional: true,
    },
    firstName: {
      type: "string",
      label: "First Name",
      description: "Filter by client first name",
      optional: true,
    },
    lastName: {
      type: "string",
      label: "Last Name",
      description: "Filter by client last name",
      optional: true,
    },
    phone: {
      type: "string",
      label: "Phone",
      description: "Filter by client phone number",
      optional: true,
    },
    max: {
      type: "integer",
      label: "Max Results",
      description: "Maximum number of appointments to return",
      optional: true,
    },
    direction: {
      type: "string",
      label: "Direction",
      description: "Sort direction",
      options: [
        "ASC",
        "DESC",
      ],
      optional: true,
    },
  },
  async run({ $ }) {
    const appointments = await this.acuityScheduling.listAppointments({
      $,
      params: {
        minDate: this.minDate,
        maxDate: this.maxDate,
        calendarID: this.calendarId,
        appointmentTypeID: this.appointmentTypeId,
        canceled: this.canceled,
        showall: this.showall,
        excludeForms: this.excludeForms,
        email: this.email,
        firstName: this.firstName,
        lastName: this.lastName,
        phone: this.phone,
        max: this.max,
        direction: this.direction,
      },
    });
    $.export("$summary", `Returned ${appointments.length} appointments.`);
    return appointments;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
Acuity SchedulingacuitySchedulingappThis component uses the Acuity Scheduling app.
Min DateminDatestring

Show appointments after this date (YYYY-MM-DD)

Max DatemaxDatestring

Show appointments before this date (YYYY-MM-DD)

Calendar IDcalendarIdstringSelect a value from the drop down menu.
Appointment Type IDappointmentTypeIdstringSelect a value from the drop down menu.
Canceledcanceledboolean

Show only canceled appointments

Show Allshowallboolean

Show both canceled and scheduled appointments

Exclude FormsexcludeFormsboolean

Don't include intake forms in the response object (speeds up the response)

Emailemailstring

Filter by client email address

First NamefirstNamestring

Filter by client first name

Last NamelastNamestring

Filter by client last name

Phonephonestring

Filter by client phone number

Max Resultsmaxinteger

Maximum number of appointments to return

DirectiondirectionstringSelect a value from the drop down menu:ASCDESC

Action Authentication

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

About Acuity Scheduling

Online Appointment Scheduling

More Ways to Connect Acuity Scheduling + Paigo

Add Credits with Paigo API on New Appointment (Instant) from Acuity Scheduling API
Acuity Scheduling + Paigo
 
Try it
Create Dimension with Paigo API on New Appointment (Instant) from Acuity Scheduling API
Acuity Scheduling + Paigo
 
Try it
Create Offering with Paigo API on New Appointment (Instant) from Acuity Scheduling API
Acuity Scheduling + Paigo
 
Try it
Get Invoice with Paigo API on New Appointment (Instant) from Acuity Scheduling API
Acuity Scheduling + Paigo
 
Try it
Measure Usage with Paigo API on New Appointment (Instant) from Acuity Scheduling API
Acuity Scheduling + Paigo
 
Try it
Entitlement Threshold Reached (Instant) from the Paigo API

Emit new event when customers' usage reaches a threshold of 80% or 100% of their offerings. See the documentation

 
Try it
New Customer (Instant) from the Paigo API

Emit new event when a customer account is created. See the documentation

 
Try it
New Invoice (Instant) from the Paigo API

Emit new event whenever a new invoice is generated. See the documentation

 
Try it
New Appointment (Instant) from the Acuity Scheduling API

Emit new event when an appointment is scheduled.

 
Try it
New Appointment Canceled (Instant) from the Acuity Scheduling API

Emit new event when an appointment is canceled.

 
Try it
Add Credits with the Paigo API

Increments the credit balance of a specific customer. See the documentation

 
Try it
Create Dimension with the Paigo API

Creates a new dimension inside the Paigo platform. See the documentation

 
Try it
Create Offering with the Paigo API

Creates a new offering in the Paigo platform. See the documentation

 
Try it
Get Invoice with the Paigo API

Fetches detailed information about a specific invoice. See the documentation

 
Try it
Measure Usage with the Paigo API

Records the amount of a specific usage type linked with a customer. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,800+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.