Lodgify is an all-in-one vacation rental software that enables property owners and managers to create bookable websites, synchronize property data across multiple channels, and manage guest reservations and communications from a single platform.
Lodgify is an all-in-one vacation rental software that enables property owners and managers to create bookable websites, synchronize property data across multiple channels, and manage guest reservations and communications from a single platform. On Nagent, Lodgify is exposed as a fully-configurable scheduling & booking integration that any agent can call — 30 actions, and API_KEY, OAUTH2 authentication. No code is required to wire Lodgify into your workflow — connect it once via the External Integrations panel and reuse it across every agent you build.
Agent builders use Lodgify to automate the kinds of tasks scheduling & booking teams previously handled manually. Concrete examples — each one is a single agent step in Nagent — include:
Every action and trigger is paired with a structured input/output schema (visible in the sections below), so when you wire Lodgify into Helix — our agentic agent builder — the editor knows exactly what each step expects and produces. Configure once, deploy anywhere across your Nagent agents.
Every operation an agent can call against Lodgify, with input parameters and output schema. Drop these into any step of an agent built in Helix.
LODGIFY_CREATE_CALLMEBACK_REQUESTTool to create a Call Me Back request in Lodgify. Use when scheduling a callback appointment with a guest for property inquiries or booking assistance.
Input parameters
Scheduled date for the call-back appointment in yyyy-MM-dd format.
Hour of the appointment (0-23).
Represents the guest information for a Call Me Back request.
Additional notes or context for the call-back request.
Origin of the enquiry.
Deprecated. Use guest_breakdown.adults instead.
Status of the enquiry. Defaults to Open.
Arrival date in yyyy-MM-dd format.
Duration of the appointment in hours. Default is 2.
List of messages attached to the enquiry.
Departure date in yyyy-MM-dd format.
Thread ID to link this enquiry to a messaging thread.
IP address from where the booking is created. If not provided, the IP address of the API caller will be used.
Property identifier.
Textual content or description of the enquiry source.
Room type identifier.
Email address of the sender if the enquiry originated from an email.
Breakdown of guests for the booking or enquiry.
IANA time zone identifier for the appointment time.
Whether the guest has given privacy consent.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_CREATE_ENQUIRYTool to create a new general enquiry with guest and reservation details. Use when a potential guest wants to make an enquiry about a property or availability.
Input parameters
The object used to create the Guest making the enquiry.
Origin of the enquiry.
Deprecated. Use guest_breakdown.adults instead.
Status of the enquiry. Defaults to 'Open' if not specified.
Arrival date in yyyy-MM-dd format.
List of messages attached to the enquiry.
Departure date in yyyy-MM-dd format.
Thread ID to link this enquiry to a messaging thread (UUID format).
IP address from where the enquiry is created. If not provided, the API caller's IP will be used.
Property identifier.
Textual content or description of the enquiry source.
Room type identifier.
Email address of the sender if the enquiry originated from an email.
The breakdown of guests for the enquiry. Required.
Indicates if the guest has given privacy consent.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_DECLINE_ENQUIRYTool to decline an enquiry, changing its status to Declined. Use when you need to reject or decline an enquiry from a potential guest.
Input parameters
The unique identifier of the enquiry to decline.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_DELETE_ENQUIRYTool to delete an enquiry by moving it to the trash. Use when you need to remove an enquiry from active listings without permanently deleting it.
Input parameters
The unique identifier of the enquiry to delete. Must be a positive integer.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_DELETE_RESERVATIONSTool to delete multiple bookings or enquiries in a single batch operation. Use when you need to remove several reservations at once instead of deleting them individually.
Input parameters
Array of reservation references to delete. Each reference must include an id and optionally a type.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_GET_COUNTRIESTool to retrieve all available countries. Use when you need to populate country selectors with supported ISO codes and names.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_GET_COUNTRY_BY_CODETool to retrieve a specific country by its ISO code. Use when you need to validate a country code or get the full country name for a given code.
Input parameters
The country code (ISO 3166-1 alpha-2) to retrieve. Examples: US, GB, FR, DE.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_GET_CURRENCY_BY_CODETool to retrieve currency details by its code. Use when you need to get information about a specific currency including its exchange rate, decimal places, and symbol.
Input parameters
Code of the currency you want (e.g., USD, EUR, GBP). Must be a valid 3-letter ISO 4217 currency code.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_GET_DELETED_PROPERTIESRetrieves IDs of properties that have been deleted from the Lodgify account. Use this action to: - Get a list of all deleted property IDs - Filter deleted properties by deletion date using the deletedSince parameter - Sync local property databases by identifying which properties no longer exist Returns an array of integer property IDs. Use deletedSince to only retrieve properties deleted after a specific datetime.
Input parameters
DateTime (ISO 8601 format) so the returned list will only include the properties deleted since this datetime. If not specified, returns all deleted properties.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_GET_EXTERNAL_BOOKINGSTool to retrieve external bookings for a specific booking ID. Use when you need to get external booking details associated with a main booking record.
Input parameters
Id of the Booking to retrieve external bookings for.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_GET_MESSAGING_THREADTool to retrieve details of a messaging thread. Use when you need to access thread information including messages, guest details, and thread status. The threadGuid parameter can be obtained from: - Reservation responses (thread_uid field) - Webhook events (guest_message_received) - Other Lodgify API endpoints that return thread identifiers
Input parameters
Thread Id (UUID format). Can be obtained from reservation responses (thread_uid field) or webhook events (guest_message_received).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_GET_PROPERTY_AVAILABILITYRetrieves availability information for a specific property within a date range. This action queries the Lodgify API to get detailed availability data including: - Property ID, room type ID, and user ID - Availability periods with start and end dates - Number of units available during each period - Booking information and channel calendars - Closed period details if applicable The propertyId is required. Date range defaults to today through 30 days if not specified. Returns empty details array if no availability data exists for the property.
Input parameters
End date for the availability period. If not provided, defaults to 30 days from start date.
The unique identifier of the property.
Start date for the availability period. If not provided, defaults to today.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_GET_ROOMTYPE_AVAILABILITYRetrieves availability calendar data for a specific room type within a property for a given date range. This action queries the Lodgify API to get detailed availability information for a specific room type, including availability periods, booking status, and rates. Use when you need to check availability for a specific room type within a property, rather than for the entire property.
Input parameters
The end date of the calendar period. Format: YYYY-MM-DD.
The start date of the calendar period. Format: YYYY-MM-DD.
The unique identifier of the property.
The unique identifier of the room type.
Indicates whether to include detailed booking status information.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_GET_UNREAD_COUNTRetrieves the total count of unread bookings and enquiries. Use this to check how many new reservations or enquiries require attention.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_GET_V1_AVAILABILITYRetrieves availability information for all properties and room types for a given date range. Use when you need to check availability across all properties in the account. Returns empty array if no availability data exists for the specified period.
Input parameters
The end date of the period to check availability (REQUIRED). Format: YYYY-MM-DD.
The start date of the period to check availability (REQUIRED). Format: YYYY-MM-DD.
Indicates whether to retrieve only booking information, excluding other availability details. This option is only valid for room type queries.
Filters the results to include only sub-periods modified after the specified date, up to 6 months prior to the current date. Format: YYYY-MM-DD. This option is only valid for room type queries.
Indicates whether to combine results from different room types into a single house total.
Indicates whether to include the list of booking identifiers in the response. This option is only valid for room type queries.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_LIST_CHANNEL_CONNECTIONSTool to retrieve a list of all channel connections. Use when you need to display or synchronize channel connections across properties.
Input parameters
Page number of results to retrieve (must be ≥ 1).
Filter by connection status (e.g., 'connected', 'disconnected').
Filter by channel name or identifier.
Number of results per page (must be ≥ 1).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_LIST_CHANNEL_MAPPINGSTool to list channel mappings. Use when you need to retrieve all channel mappings, optionally filtered by property, channel code, or external ID. Supports pagination.
Input parameters
Page number for pagination (1-based).
Number of items per page.
Filter by external listing ID.
Filter by Lodgify property ID.
Filter by channel code (e.g., Airbnb).
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_LIST_CHANNEL_RESERVATIONSTool to list channel reservations. Use when you need to retrieve reservations across channels filtered by property, channel, or date range. Results are paginated; use `limit` and `offset` together across multiple requests to retrieve all reservations, as a single request may not return the full result set.
Input parameters
Maximum number of reservations to return.
Number of items to skip before starting to collect the result set.
Filter by channel ID.
End date for reservation creation (yyyy-MM-dd). Interpreted as UTC.
Filter by Lodgify property ID.
Start date for reservation creation (yyyy-MM-dd). Interpreted as UTC.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_LIST_CHANNELSRetrieves a list of all available distribution channels in the Lodgify account. Channels are booking platforms (e.g., Airbnb, Booking.com, Vrbo, Expedia) that can be connected to properties for synchronized availability and reservations. Use this action to: - Get a list of all available channels that can be connected - View channel details including ID, name, description, and active status - Check which channels are currently active in the account Returns an empty list if no channels are available or configured.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_LIST_CURRENCIESTool to retrieve all available currency codes. Use when you need to display currency options or validate currency codes for pricing and reservations.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_LIST_PROPERTIESRetrieves all properties from the Lodgify account with optional pagination. Use this action to: - Get a list of all properties in the account - Iterate through properties using pagination - Check which properties exist before performing operations on specific properties Returns property IDs, names, and address details including coordinates. Paginate through all pages until results are exhausted — stopping early silently omits remaining properties. No server-side filtering by region or location; filter client-side using returned name or address fields.
Input parameters
Page number to retrieve (starting from 1). If not specified, returns the first page.
Number of properties to return per page (1-100). If not specified, API uses its default page size.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_LIST_RESERVATIONSTool to retrieve a paginated list of bookings and enquiries from the inbox. Use when you need to fetch reservations with optional filtering by status, property, date range, or trash status.
Input parameters
The maximum number of items to return per page. Maximum value is 50.
Optional filter to include or exclude items in the trash. Default is false.
The number of items to skip before starting to collect the result set (for pagination).
Optional filter to return only bookings/enquiries with a specific status (e.g., "Booked", "Open").
Optional filter to return items ending before this date.
Optional filter to return items associated with a specific property ID.
Optional filter to return items starting from this date.
Optional filter to return items modified after this specific date and time.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_LIST_WEBHOOKSRetrieves a list of all webhooks configured in the Lodgify account. Use this action to: - Get all webhook configurations - View webhook details including ID, event type, and target URL - Check which webhooks are currently set up for receiving notifications Returns an empty list if no webhooks are configured.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_MARK_RESERVATIONS_NOT_REPLIEDTool to batch mark bookings and enquiries as not replied. Use when you need to mark multiple reservations (bookings or enquiries) as not replied in a single operation.
Input parameters
List of bookings and/or enquiries to mark as not replied. Each item must have an ID and type.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_MARK_RESERVATIONS_REPLIEDTool to batch mark bookings or enquiries as replied. Use when you need to mark multiple reservations as replied in a single operation.
Input parameters
List of bookings or enquiries to mark as replied. Each item must have an id and optionally a type ('Booking' or 'Enquiry').
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_RECOVER_ENQUIRYTool to restore an enquiry that was previously moved to the trash. Use when you need to recover a deleted enquiry by its ID.
Input parameters
The unique identifier of the enquiry to recover.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_REOPEN_ENQUIRYTool to reopen an enquiry, changing its status to Open. Use when you need to reactivate a previously closed or cancelled enquiry.
Input parameters
The unique identifier of the enquiry to reopen.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_SET_AVAILABILITYUpdates the number of available units for a specific room type within a date range. Use this action to set availability for booking periods. The period_start and period_end dates define the range during which the specified number of units will be available.
Input parameters
The number of units to set as available. Must be non-negative.
The end date of the period to update. Must be in ISO 8601 datetime format (e.g., '2026-02-25T00:00:00Z').
The unique identifier of the property.
The start date of the period to update. Must be in ISO 8601 datetime format (e.g., '2026-02-15T00:00:00Z').
The unique identifier of the room type.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_SUBSCRIBE_WEBHOOKSubscribes to a Lodgify webhook by providing a target URL and event type. Use this action to: - Register a callback URL to receive real-time notifications from Lodgify - Listen for specific events like new bookings, rate changes, or availability updates - Set up integrations that respond to changes in the Lodgify system The target_url must be unique. Returns a webhook ID for later unsubscription and a secret for signature verification.
Input parameters
The event type to subscribe to. Specifies which Lodgify events will trigger the webhook.
The callback URL that Lodgify will call when the event is triggered. Must be unique - reusing a URL returns a 409 Conflict error.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
LODGIFY_UNSUBSCRIBE_WEBHOOKTool to unsubscribe from a Lodgify webhook. Use when you need to remove a webhook subscription by providing the webhook ID that was returned during subscription.
Input parameters
The ID of the webhook you want to unsubscribe from. This is the same ID that was returned when you subscribed to the webhook.
Output
Data from the action execution
Error if any occurred during the execution of the action
Whether or not the action execution was successful or not
No publicly available marketplace agent is found using this tool yet. There are 72 agents privately built on Nagent that already use Lodgify.
Build on Nagent
Connect Lodgify to any Nagent agent in minutes — no API key management, no boilerplate. Just configure and deploy.
The five questions agent builders ask before adopting a new integration.
Open the External Integrations panel inside Nagent (app.nagent.ai/externalIntegration), find Lodgify, and click "Connect Now." You'll authenticate with API_KEY, OAUTH2 — Nagent handles credential storage and refresh automatically. Once connected, Lodgify is available to any agent in your workspace.
No. Nagent provides no-code integration for every tool. Once Lodgify is connected, you configure its 30 actions directly in the agent builder UI — no API calls, no boilerplate, no schema management.
Helix — Nagent's agentic agent builder — lets you drop Lodgify steps into any workflow visually. Pick an action (e.g., one of those listed above), fill in the inputs (Helix knows the required vs. optional schema for each parameter), and connect it to upstream/downstream steps. Triggers run as the entry point of an agent, so when a Lodgify event fires, the agent kicks off automatically.
Every Lodgify action and trigger ships with a fully-typed schema — input parameters with name, type, required flag, and description, plus the output payload shape. The schemas are documented in the sections above. Helix uses these schemas to validate your configuration at build time and to type-check the data flowing between steps.
Yes. While Lodgify ships with 30 pre-built scheduling & booking actions, you can layer custom logic around them inside Helix — pre/post-processing steps, conditional branches, retries, or stitching Lodgify together with other connected tools. For deeper customization, talk to our team about Nagent's Agentic AI Lab — forward-deployed engineers who build Lodgify-based workflows tailored to your business.