Planyo is an online reservation system which can be used by any business taking bookings: for days, nights, hours or minutes, or scheduled events.
Allows you to add one or more email addresses to the global suppressions group. See the docs here
The 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}`,
},
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})