Hostaway

More bookings, more revenue, less hassle for your rentals with Hostaway.

Integrate the Hostaway API with the WooCommerce API

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

Create Customer with WooCommerce API on New Message Received from Hostaway API
Hostaway + WooCommerce
 
Try it
Create Customer with WooCommerce API on Reservation Created from Hostaway API
Hostaway + WooCommerce
 
Try it
Create Customer with WooCommerce API on Reservation Updated from Hostaway API
Hostaway + WooCommerce
 
Try it
Create Order with WooCommerce API on New Message Received from Hostaway API
Hostaway + WooCommerce
 
Try it
Create Order with WooCommerce API on Reservation Created from Hostaway API
Hostaway + WooCommerce
 
Try it
New Message Received from the Hostaway API

Emit new event when a new message is received in Hostaway.

 
Try it
Reservation Created from the Hostaway API

Emit new event when a new reservation is created in Hostaway.

 
Try it
Reservation Updated from the Hostaway API

Emit new event when a reservation is updated in Hostaway.

 
Try it
New Coupon Event (Instant) from the WooCommerce API

Emit new event each time the specified coupon event(s) occur

 
Try it
New Customer Event (Instant) from the WooCommerce API

Emit new event each time the specified customer event(s) occur

 
Try it
Create Task with the Hostaway API

Creates a new task in Hostaway. See the documentation

 
Try it
Create Customer with the WooCommerce API

Creates a new customer. See the docs

 
Try it
Create Order with the WooCommerce API

Creates a new order. See the docs

 
Try it
Create Product with the WooCommerce API

Creates a new product. See the docs

 
Try it
Get Customer with the WooCommerce API

Retrieve a specific customer. See the docs

 
Try it

Overview of Hostaway

The Hostaway API allows for automation and integration with their property management platform. It provides endpoints for managing listings, bookings, messages, and more. On Pipedream, you can leverage these endpoints to create automated workflows that connect Hostaway with various other services, such as calendars, email, and messaging apps, or even custom functions for enhanced property management. Whether you're aiming to synchronize booking calendars or automate guest communication, the Hostaway API on Pipedream enables you to streamline operations and enhance guest experiences with ease.

Connect Hostaway

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: {
    hostaway: {
      type: "app",
      app: "hostaway",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.hostaway.com/v1/users`,
      headers: {
        Authorization: `Bearer ${this.hostaway.$auth.oauth_access_token}`,
        "Cache-control": `no-cache`,
      },
    })
  },
})

Overview of WooCommerce

WooCommerce is a customizable, open-source eCommerce platform built on WordPress. With the WooCommerce API, you can tap into the heart of your eCommerce store to read, create, update, and delete products, orders, and customers. On Pipedream, you can harness this API to automate routine tasks, sync data across platforms, and enhance customer experiences. By connecting WooCommerce to a wide array of apps and services, you can streamline operations, trigger personalized marketing, and analyze your sales data with greater ease.

Connect WooCommerce

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: {
    woocommerce: {
      type: "app",
      app: "woocommerce",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.woocommerce.$auth.url}/wp-json/wc/v2/orders`,
      auth: {
        username: `${this.woocommerce.$auth.key}`,
        password: `${this.woocommerce.$auth.secret}`,
      },
    })
  },
})