One customer called us "Shopify for local businesses that offer neighborhood services!" We love it. Enjoy simple, powerful, online booking!
Go to siteLaunch27 is a robust platform aimed at helping businesses manage bookings and appointments seamlessly. Leveraging the Launch27 API on Pipedream, users can automate various business processes by connecting their scheduling system with other apps and services. This can include automations like syncing new bookings with a Google Calendar, triggering SMS or email reminders when an appointment is nearing, or compiling customer feedback collected through Launch27 into a CRM platform.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
launch27: {
type: "app",
app: "launch27",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.launch27.$auth.domain}.launch27.com/v1/settings`,
headers: {
Authorization: `Bearer ${this.launch27.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
})
},
})
Automated Booking Confirmation: When a new booking is made on Launch27, trigger an automated email or SMS to the customer confirming their appointment, using integration with SendGrid or Twilio on Pipedream.
Dynamic Calendar Management: Sync new Launch27 bookings to a Google Calendar to keep all appointments up-to-date and avoid double-bookings. If a booking is canceled or rescheduled in Launch27, update the corresponding Google Calendar event automatically.
Customer Feedback Aggregation: After service completion, use Launch27 to solicit feedback, then collect and log these responses into a Google Sheet or a CRM like HubSpot. This data can be used to tailor services, address concerns, and improve overall customer satisfaction.
Launch27 uses OAuth authentication. When you connect your Launch27 account, Pipedream will open a popup window where you can sign into Launch27 and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Launch27 API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://{{custom_fields.domain}}.launch27.com/latest/login
content-type: application/json
accept: application/json
email={{custom_fields.email}}
&
password={{custom_fields.password}}