Uplisting

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

Integrate the Uplisting API with the Notion API

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

Append Block to Parent with Notion API on New Booking Created (Instant) from Uplisting API
Uplisting + Notion
 
Try it
Append Block to Parent with Notion API on New Booking Removed (Instant) from Uplisting API
Uplisting + Notion
 
Try it
Append Block to Parent with Notion API on New Booking Updated (Instant) from Uplisting API
Uplisting + Notion
 
Try it
Create Booking with Uplisting API on New Database from Notion API
Notion + Uplisting
 
Try it
Create Booking with Uplisting API on New Page in Database from Notion API
Notion + Uplisting
 
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 Booking Updated (Instant) from the Uplisting API

Emit new event when a booking is updated.

 
Try it
New Database from the Notion API

Emit new event when a database is created. Note: Databases must be shared with your Pipedream Integtration to trigger event.

 
Try it
New Page in Database from the Notion API

Emit new event when a page in a database is created

 
Try it
Create Booking with the Uplisting API

Create a confirmed booking. See the documentation

 
Try it
Append Block to Parent with the Notion API

Creates and appends blocks to the specified parent. See the documentation

 
Try it
Create Page with the Notion API

Creates a page from a parent page. The only valid property is title. See the documentation

 
Try it
Create Page from Database with the Notion API

Creates a page from a database. See the docs

 
Try it
Duplicate Page with the Notion API

Creates a new page copied from an existing page block. See the docs

 
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 Notion

Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Leveraging Pipedream's platform, you can build workflows that connect Notion with a myriad of other services to automate tasks such as content management, task tracking, and data synchronization. With Pipedream's serverless execution, you can trigger these workflows on a schedule, or by external events from other services, without managing any infrastructure.

Connect Notion

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: {
    notion: {
      type: "app",
      app: "notion",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.notion.com/v1/users/me`,
      headers: {
        Authorization: `Bearer ${this.notion.$auth.oauth_access_token}`,
        "Notion-Version": `2021-08-16`,
      },
    })
  },
})