Uplisting

Confidently grow your STR business & earn more on Uplisting. Preferred+ AirBnB software partner.

Integrate the Uplisting API with the Supabase API

Setup the Uplisting API trigger to run a workflow which integrates with the Supabase API. Pipedream's integration platform allows you to integrate Uplisting and Supabase remarkably fast. Free for developers.

Create Booking with Uplisting API on New Row Added from Supabase API
Supabase + Uplisting
 
Try it
Create Booking with Uplisting API on New Webhook Event (Instant) from Supabase API
Supabase + Uplisting
 
Try it
Delete Row with Supabase API on New Booking Created (Instant) from Uplisting API
Uplisting + Supabase
 
Try it
Delete Row with Supabase API on New Booking Removed (Instant) from Uplisting API
Uplisting + Supabase
 
Try it
Delete Row with Supabase API on New Booking Updated (Instant) from Uplisting API
Uplisting + Supabase
 
Try it
New Booking Created (Instant) from the Uplisting API

Emit new event when a booking is created.

 
Try it
New Booking Removed (Instant) from the Uplisting API

Emit new event when a booking is removed.

 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Booking Updated (Instant) from the Uplisting API

Emit new event when a booking is updated.

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
Create Booking with the Uplisting API

Create a confirmed booking. See the documentation

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Remote Procedure Call with the Supabase API

Call a Postgres function in a database. See the docs here

 
Try it
Select Row with the Supabase API

Selects row(s) in a database. See the docs here

 
Try it

Overview of Uplisting

The 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.

Connect Uplisting

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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}`,
      },
    })
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})