Lodgify is the easiest way to create a hospitality website with a “Book Now” button and manage your reservations.
Go to siteWith the Lodgify API, you can build a variety of applications and services for vacation rental property owners and managers. Here are a few examples:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lodgify: {
type: "app",
app: "lodgify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lodgify.com/v1/properties`,
headers: {
"X-ApiKey": `${this.lodgify.$auth.api_key}`,
},
})
},
})
Lodgify uses API keys for authentication. When you connect your Lodgify account, Pipedream securely stores the keys so you can easily authenticate to Lodgify APIs in both code and no-code steps.
To retrieve your API keys,