Confidently grow your STR business & earn more on Uplisting. Preferred+ AirBnB software partner.
Go to siteThe Uplisting API allows property managers and hosts to automate and integrate their listing and booking management across various platforms. With this API on Pipedream, you can streamline operations like syncing bookings, updating listings, and managing guests' stays. Uplisting on Pipedream provides a canvas for building workflows that connect with other apps for a cohesive property management system, simplifying tasks such as communication, scheduling, and analytics.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
uplisting: {
type: "app",
app: "uplisting",
}
},
async run({steps, $}) {
const base64_encoded_api_key = Buffer.from(this.uplisting.$auth.api_key).toString('base64');
return await axios($, {
url: `https://connect.uplisting.io/users/me`,
headers: {
"Content-Type": `application/json`,
"Authorization": `Basic ${base64_encoded_api_key}`,
},
})
},
})
Automate Booking Confirmations: When a new booking is made on Uplisting, trigger a Pipedream workflow that sends a personalized confirmation email to the guest using the SendGrid app. This can include details like check-in instructions and house rules.
Sync Bookings with Google Calendar: Create a workflow that adds new Uplisting bookings to a Google Calendar, helping you visually manage property availability. You can also set up reminders for upcoming check-ins or check-outs.
Generate Monthly Revenue Reports: With a Pipedream workflow, consolidate booking data from Uplisting at the end of each month, calculate earnings, and compile them into a report using Google Sheets. This can be set to email the report to stakeholders via Gmail or another email service.
Uplisting uses API keys for authentication. When you connect your Uplisting account, Pipedream securely stores the keys so you can easily authenticate to Uplisting APIs in both code and no-code steps.
Sign in and copy your API key from the Connect > API page.