Lodgify integration
Lodgify is an all-in-one vacation rental software that enables property owners…
- Provider
- lodgify
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 30 available
Quick start
Call Lodgify from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Lodgify's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"LODGIFY_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Lodgify API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
30 actions exposed via the
Lodgify integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
LODGIFY_CREATE_CALLMEBACK_REQUEST -
LODGIFY_CREATE_ENQUIRY -
LODGIFY_DECLINE_ENQUIRY -
LODGIFY_DELETE_ENQUIRY -
LODGIFY_DELETE_RESERVATIONS -
LODGIFY_GET_COUNTRIES -
LODGIFY_GET_COUNTRY_BY_CODE -
LODGIFY_GET_CURRENCY_BY_CODE -
LODGIFY_GET_DELETED_PROPERTIES -
LODGIFY_GET_EXTERNAL_BOOKINGS -
LODGIFY_GET_MESSAGING_THREAD -
LODGIFY_GET_PROPERTY_AVAILABILITY
Show all 30 actions
-
LODGIFY_GET_ROOMTYPE_AVAILABILITY -
LODGIFY_GET_UNREAD_COUNT -
LODGIFY_GET_V1_AVAILABILITY -
LODGIFY_LIST_CHANNEL_CONNECTIONS -
LODGIFY_LIST_CHANNEL_MAPPINGS -
LODGIFY_LIST_CHANNEL_RESERVATIONS -
LODGIFY_LIST_CHANNELS -
LODGIFY_LIST_CURRENCIES -
LODGIFY_LIST_PROPERTIES -
LODGIFY_LIST_RESERVATIONS -
LODGIFY_LIST_WEBHOOKS -
LODGIFY_MARK_RESERVATIONS_NOT_REPLIED -
LODGIFY_MARK_RESERVATIONS_REPLIED -
LODGIFY_RECOVER_ENQUIRY -
LODGIFY_REOPEN_ENQUIRY -
LODGIFY_SET_AVAILABILITY -
LODGIFY_SUBSCRIBE_WEBHOOK -
LODGIFY_UNSUBSCRIBE_WEBHOOK
Build with Lodgify
Open OverSkill, describe what you want to build, and reference Lodgify in your prompt — the AI will wire up the integration automatically.