Hostaway

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

Integrate the Hostaway API with the ServiceNow API

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

Create Table Record with ServiceNow API on New Message Received from Hostaway API
Hostaway + ServiceNow
 
Try it
Create Table Record with ServiceNow API on Reservation Created from Hostaway API
Hostaway + ServiceNow
 
Try it
Create Table Record with ServiceNow API on Reservation Updated from Hostaway API
Hostaway + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New Message Received from Hostaway API
Hostaway + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on Reservation Created from Hostaway API
Hostaway + ServiceNow
 
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
Create Task with the Hostaway API

Creates a new task in Hostaway. See the documentation

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
Try it
Get Table Record By SysId with the ServiceNow API

Retrieves the record identified by the specified sys_id from the specified table.

 
Try it
Get Table Records with the ServiceNow API

Retrieves multiple records for the specified table.

 
Try it
Update Table Record with the ServiceNow API

Updates the specified record with the name-value pairs included in the request body.

 
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 ServiceNow

The ServiceNow API enables developers to tap into the robust capabilities of ServiceNow's IT service management platform. With the API, you can create, read, update, and delete records, manage workflows, and integrate with other services. By leveraging these capabilities, you can automate routine tasks, sync data across multiple platforms, and enhance operational efficiencies.

Connect ServiceNow

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    servicenow: {
      type: "app",
      app: "servicenow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
      headers: {
        Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
      },
    })
  },
})