The Appointedd API enables you to manage bookings, resources, services, and customers within the Appointedd platform programmatically. Integrating with Pipedream allows you to automate these tasks, connect with multiple apps, and streamline your scheduling and business workflows. With Pipedream's serverless platform, you can harness Appointedd's capabilities to trigger workflows on specific events, sync data across platforms, or handle complex scheduling logic without writing extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
appointedd: {
type: "app",
app: "appointedd",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.appointedd.com/v1/bookings?limit=10&sort_by=natural&order_by=descending&return_matching_customers_only=false`,
headers: {
"X-API-KEY": `${this.appointedd.$auth.api_key}`,
},
})
},
})
Automate Booking Confirmations: Send personalized confirmation emails via SendGrid or Gmail when a new booking is made through Appointedd. Use Pipedream to listen for new booking events and automatically trigger an email confirmation with details.
Sync Appointments to Google Calendar: Keep your Google Calendar in sync with Appointedd bookings by creating a Pipedream workflow that adds new Appointedd appointments to your Google Calendar and updates them if any changes occur in Appointedd.
Customer Follow-Up Surveys: After an appointment is completed, trigger a workflow to send a follow-up survey to the customer using Typeform or Google Forms. Use Pipedream to detect when an appointment's status changes to completed and then send a survey link to gather feedback.
Emit new event when a customer cancels an existing group or single booking within your appointedd organisations. See the documentation
Emit new event when a new customer books into a new booking or an existing group booking in your appointedd organisations. See the documentation
Emit new event when a new customer is created in one of your Appointedd organisations. See the documentation
Appointedd uses API keys for authentication. When you connect your Appointedd account, Pipedream securely stores the keys so you can easily authenticate to Appointedd APIs in both code and no-code steps.