Planyo is an online reservation system which can be used by any business taking bookings: for days, nights, hours or minutes, or scheduled events.
Go to siteThe Planyo Online Booking API facilitates interaction with a versatile reservation system, allowing for booking management and integration with external calendars, payment systems, and customer relationship tools. With Pipedream's serverless platform, you can wield this API to construct dynamic, event-driven workflows. Automate notifications, synchronize bookings with other services, or generate detailed reports on reservation trends. Streamline scheduling tasks, minimize manual data entry, and enhance the customer booking experience with customized automations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
planyo_online_booking: {
type: "app",
app: "planyo_online_booking",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.planyo.com/rest/`,
params: {
method: `get_site_info`,
api_key: `${this.planyo_online_booking.$auth.api_key}`,
},
})
},
})
Automated Reservation Confirmation Emails: Trigger a workflow in Pipedream when a new booking is made via Planyo. Automatically send a personalized confirmation email to the customer using SendGrid, including details like date, time, and any necessary preparation steps.
Synchronization with Google Calendar: Whenever a booking is modified on Planyo, use Pipedream to catch this event and update an associated Google Calendar event. This ensures that any changes in the booking schedule are reflected across all staff calendars in real-time, preventing double bookings and scheduling conflicts.
Slack Notifications for New Bookings: Set up a Pipedream workflow that listens for new reservations on Planyo and sends a message to a designated Slack channel. This keeps your team instantly informed about new bookings, allowing for swift planning and resource allocation.
Planyo Online Booking uses API keys for authentication. When you connect your Planyo Online Booking account, Pipedream securely stores the keys so you can easily authenticate to Planyo Online Booking APIs in both code and no-code steps.
Go to the API - Planyo Web Services page and under the Authentication and security section click the API Key button.