The world’s most flexible online scheduling system.
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
Add or update a single record in your Pipedream Data Store.
Add or update multiple records to your Pipedream Data Store.
Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.
Check if a key exists in your Pipedream Data Store or create one if it doesn't exist.
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}`,
},
})
},
})
Data Stores are a key-value store that allow you to persist state and share data across workflows. You can perform CRUD operations, enabling dynamic data management within your serverless architecture. Use it to save results from API calls, user inputs, or interim data; then read, update, or enrich this data in subsequent steps or workflows. Data Stores simplify stateful logic and cross-workflow communication, making them ideal for tracking process statuses, aggregating metrics, or serving as a simple configuration store.
export default defineComponent({
props: {
myDataStore: {
type: "data_store",
},
},
async run({ steps, $ }) {
await this.myDataStore.set("key_here","Any serializable JSON as the value")
return await this.myDataStore.get("key_here")
},
})