Mews

An innovative hospitality management cloud that empowers the modern hotelier to improve performance, maximize revenue, and provide remarkable guest experiences.

Integrate the Mews API with the Formatting API

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

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Mews

The Mews API is a gateway for developers to interact with the Mews hospitality platform, allowing for innovative connections and automations between hotel management systems and other software tools. By using Pipedream, you can create custom workflows that automate repetitive tasks, integrate with numerous third-party services, and manipulate data to suit specific needs within the hospitality industry. The combination of Mews' API and Pipedream's serverless execution model paves the way for enhanced guest experiences, optimized operations, and real-time data handling.

Connect Mews

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    mews: {
      type: "app",
      app: "mews",
    }
  },
  async run({steps, $}) {
    const data = {
      "ClientToken": `${this.mews.$auth.ClientToken}`,
      "AccessToken": `${this.mews.$auth.AccessToken}`,
      "Client": `${this.mews.$auth.Client}`,
    }
    return await axios($, {
      method: "post",
      url: `https://${this.mews.$auth.platform_url}/api/connector/v1/configuration/get`,
      auth: {
        username: `{{custom_fields.email}}`,
        password: `{{custom_fields.password}}`,
      },
      data,
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})