An innovative hospitality management cloud that empowers the modern hotelier to improve performance, maximize revenue, and provide remarkable guest experiences.
Go to siteThe 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.
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,
})
},
})
Automated Guest Communication Workflow: Send personalized welcome emails or SMS messages to guests upon check-in using Mews with a service like SendGrid or Twilio. Trigger this action in Pipedream when a new guest is added to the Mews system, ensuring timely and personalized guest engagement.
Dynamic Pricing Adjustment: Integrate Mews with external pricing analysis tools to automatically update room rates based on demand. Use Pipedream to monitor occupancy data from Mews and trigger price changes that are then reflected back in the Mews system, optimizing revenue management strategies.
Housekeeping Status Updates: Connect Mews to a team collaboration platform like Slack using Pipedream. Notify housekeeping staff when guests check out or request room cleaning, streamlining communication and improving room turnaround times for incoming guests.
Mews uses API keys for authentication. When you connect your Mews account, Pipedream securely stores the keys so you can easily authenticate to Mews APIs in both code and no-code steps.
ClientToken
is provided by Mews integration team. For further information, please use the chat function on the Environment - Connector API page.AccessToken
is a unique token per enterprise and can be provided to you by the Mews enterprise admin.Client
is a string identifying the system using the API.platform_url
depends on the environment used to access the Connector API. For the production environment use www.mews.li
. Demo Environments are available too.