# Lodgify

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.

- **Category:** scheduling & booking
- **Auth:** API_KEY, OAUTH2
- **Composio Managed App Available?** No
- **Tools:** 30
- **Triggers:** 0
- **Slug:** `LODGIFY`
- **Version:** 20260316_00

## Tools

### Create Call Me Back Request

**Slug:** `LODGIFY_CREATE_CALLMEBACK_REQUEST`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `date` | string | No | Scheduled date for the call-back appointment in yyyy-MM-dd format. |
| `time` | integer | No | Hour of the appointment (0-23). |
| `guest` | object | No | Represents the guest information for a Call Me Back request. |
| `notes` | string | No | Additional notes or context for the call-back request. |
| `origin` | string | No | Origin of the enquiry. |
| `people` | integer | No | Deprecated. Use guest_breakdown.adults instead. |
| `status` | string | No | Status of the enquiry. Defaults to Open. |
| `arrival` | string | No | Arrival date in yyyy-MM-dd format. |
| `duration` | number | No | Duration of the appointment in hours. Default is 2. |
| `messages` | array | No | List of messages attached to the enquiry. |
| `departure` | string | No | Departure date in yyyy-MM-dd format. |
| `thread_id` | string | No | Thread ID to link this enquiry to a messaging thread. |
| `ip_created` | string | No | IP address from where the booking is created. If not provided, the IP address of the API caller will be used. |
| `property_id` | integer | No | Property identifier. |
| `source_text` | string | No | Textual content or description of the enquiry source. |
| `room_type_id` | integer | No | Room type identifier. |
| `source_address` | string | No | Email address of the sender if the enquiry originated from an email. |
| `guest_breakdown` | object | Yes | Breakdown of guests for the booking or enquiry. |
| `time_zone_info_id` | string | No | IANA time zone identifier for the appointment time. |
| `has_privacy_consent` | boolean | No | Whether the guest has given privacy consent. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Enquiry

**Slug:** `LODGIFY_CREATE_ENQUIRY`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `guest` | object | No | The object used to create the Guest making the enquiry. |
| `origin` | string | No | Origin of the enquiry. |
| `people` | integer | No | Deprecated. Use guest_breakdown.adults instead. |
| `status` | string | No | Status of the enquiry. Defaults to 'Open' if not specified. |
| `arrival` | string | No | Arrival date in yyyy-MM-dd format. |
| `messages` | array | No | List of messages attached to the enquiry. |
| `departure` | string | No | Departure date in yyyy-MM-dd format. |
| `thread_id` | string | No | Thread ID to link this enquiry to a messaging thread (UUID format). |
| `ip_created` | string | No | IP address from where the enquiry is created. If not provided, the API caller's IP will be used. |
| `property_id` | integer | No | Property identifier. |
| `source_text` | string | No | Textual content or description of the enquiry source. |
| `room_type_id` | integer | No | Room type identifier. |
| `source_address` | string | No | Email address of the sender if the enquiry originated from an email. |
| `guest_breakdown` | object | Yes | The breakdown of guests for the enquiry. Required. |
| `has_privacy_consent` | boolean | No | Indicates if the guest has given privacy consent. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Decline Enquiry

**Slug:** `LODGIFY_DECLINE_ENQUIRY`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | integer | Yes | The unique identifier of the enquiry to decline. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Enquiry

**Slug:** `LODGIFY_DELETE_ENQUIRY`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | integer | Yes | The unique identifier of the enquiry to delete. Must be a positive integer. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Reservations

**Slug:** `LODGIFY_DELETE_RESERVATIONS`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `reservations` | array | Yes | Array of reservation references to delete. Each reference must include an id and optionally a type. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Countries

**Slug:** `LODGIFY_GET_COUNTRIES`

Tool to retrieve all available countries. Use when you need to populate country selectors with supported ISO codes and names.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Country by Code

**Slug:** `LODGIFY_GET_COUNTRY_BY_CODE`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `code` | string | Yes | The country code (ISO 3166-1 alpha-2) to retrieve. Examples: US, GB, FR, DE. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Currency By Code

**Slug:** `LODGIFY_GET_CURRENCY_BY_CODE`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `code` | string | Yes | Code of the currency you want (e.g., USD, EUR, GBP). Must be a valid 3-letter ISO 4217 currency code. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Deleted Properties

**Slug:** `LODGIFY_GET_DELETED_PROPERTIES`

Retrieves 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `deletedSince` | string | No | 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get External Bookings

**Slug:** `LODGIFY_GET_EXTERNAL_BOOKINGS`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | integer | Yes | Id of the Booking to retrieve external bookings for. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Messaging Thread

**Slug:** `LODGIFY_GET_MESSAGING_THREAD`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `threadGuid` | string | Yes | Thread Id (UUID format). Can be obtained from reservation responses (thread_uid field) or webhook events (guest_message_received). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Property Availability

**Slug:** `LODGIFY_GET_PROPERTY_AVAILABILITY`

Retrieves 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `periodEnd` | string | No | End date for the availability period. If not provided, defaults to 30 days from start date. |
| `propertyId` | integer | Yes | The unique identifier of the property. |
| `periodStart` | string | No | Start date for the availability period. If not provided, defaults to today. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Room Type Availability

**Slug:** `LODGIFY_GET_ROOMTYPE_AVAILABILITY`

Retrieves 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `end` | string | No | The end date of the calendar period. Format: YYYY-MM-DD. |
| `start` | string | No | The start date of the calendar period. Format: YYYY-MM-DD. |
| `propertyId` | integer | Yes | The unique identifier of the property. |
| `roomTypeId` | integer | Yes | The unique identifier of the room type. |
| `includeDetails` | boolean | No | Indicates whether to include detailed booking status information. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Unread Count

**Slug:** `LODGIFY_GET_UNREAD_COUNT`

Retrieves the total count of unread bookings and enquiries. Use this to check how many new reservations or enquiries require attention.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get V1 Availability

**Slug:** `LODGIFY_GET_V1_AVAILABILITY`

Retrieves 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `periodEnd` | string | Yes | The end date of the period to check availability (REQUIRED). Format: YYYY-MM-DD. |
| `periodStart` | string | Yes | The start date of the period to check availability (REQUIRED). Format: YYYY-MM-DD. |
| `BookingsOnly` | boolean | No | Indicates whether to retrieve only booking information, excluding other availability details. This option is only valid for room type queries. |
| `ModifiedSince` | string | No | 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. |
| `CombineRoomTypes` | boolean | No | Indicates whether to combine results from different room types into a single house total. |
| `IncludeBookingIds` | boolean | No | Indicates whether to include the list of booking identifiers in the response. This option is only valid for room type queries. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Channel Connections

**Slug:** `LODGIFY_LIST_CHANNEL_CONNECTIONS`

Tool to retrieve a list of all channel connections. Use when you need to display or synchronize channel connections across properties.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number of results to retrieve (must be ≥ 1). |
| `status` | string | No | Filter by connection status (e.g., 'connected', 'disconnected'). |
| `channel` | string | No | Filter by channel name or identifier. |
| `pageSize` | integer | No | Number of results per page (must be ≥ 1). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Channel Mappings

**Slug:** `LODGIFY_LIST_CHANNEL_MAPPINGS`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `pageSize` | integer | No | Number of items per page. |
| `externalId` | string | No | Filter by external listing ID. |
| `propertyId` | integer | No | Filter by Lodgify property ID. |
| `channelCode` | string | No | Filter by channel code (e.g., Airbnb). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Channel Reservations

**Slug:** `LODGIFY_LIST_CHANNEL_RESERVATIONS`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | Maximum number of reservations to return. |
| `offset` | integer | No | Number of items to skip before starting to collect the result set. |
| `channelId` | integer | No | Filter by channel ID. |
| `createdTo` | string | No | End date for reservation creation (yyyy-MM-dd). Interpreted as UTC. |
| `propertyId` | integer | No | Filter by Lodgify property ID. |
| `createdFrom` | string | No | Start date for reservation creation (yyyy-MM-dd). Interpreted as UTC. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Channels

**Slug:** `LODGIFY_LIST_CHANNELS`

Retrieves 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Currencies

**Slug:** `LODGIFY_LIST_CURRENCIES`

Tool to retrieve all available currency codes. Use when you need to display currency options or validate currency codes for pricing and reservations.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Properties

**Slug:** `LODGIFY_LIST_PROPERTIES`

Retrieves 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number to retrieve (starting from 1). If not specified, returns the first page. |
| `pageSize` | integer | No | Number of properties to return per page (1-100). If not specified, API uses its default page size. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Reservations

**Slug:** `LODGIFY_LIST_RESERVATIONS`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | The maximum number of items to return per page. Maximum value is 50. |
| `trash` | boolean | No | Optional filter to include or exclude items in the trash. Default is false. |
| `offset` | integer | No | The number of items to skip before starting to collect the result set (for pagination). |
| `status` | string | No | Optional filter to return only bookings/enquiries with a specific status (e.g., "Booked", "Open"). |
| `periodEnd` | string | No | Optional filter to return items ending before this date. |
| `propertyId` | integer | No | Optional filter to return items associated with a specific property ID. |
| `periodStart` | string | No | Optional filter to return items starting from this date. |
| `modifiedSince` | string | No | Optional filter to return items modified after this specific date and time. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Webhooks

**Slug:** `LODGIFY_LIST_WEBHOOKS`

Retrieves 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Mark Reservations Not Replied

**Slug:** `LODGIFY_MARK_RESERVATIONS_NOT_REPLIED`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `items` | array | Yes | List of bookings and/or enquiries to mark as not replied. Each item must have an ID and type. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Mark Reservations Replied

**Slug:** `LODGIFY_MARK_RESERVATIONS_REPLIED`

Tool to batch mark bookings or enquiries as replied. Use when you need to mark multiple reservations as replied in a single operation.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `items` | array | Yes | List of bookings or enquiries to mark as replied. Each item must have an id and optionally a type ('Booking' or 'Enquiry'). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Recover Enquiry

**Slug:** `LODGIFY_RECOVER_ENQUIRY`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | integer | Yes | The unique identifier of the enquiry to recover. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Reopen Enquiry

**Slug:** `LODGIFY_REOPEN_ENQUIRY`

Tool to reopen an enquiry, changing its status to Open. Use when you need to reactivate a previously closed or cancelled enquiry.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | integer | Yes | The unique identifier of the enquiry to reopen. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Set Availability

**Slug:** `LODGIFY_SET_AVAILABILITY`

Updates 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `available` | integer | Yes | The number of units to set as available. Must be non-negative. |
| `period_end` | string | Yes | The end date of the period to update. Must be in ISO 8601 datetime format (e.g., '2026-02-25T00:00:00Z'). |
| `propertyId` | integer | Yes | The unique identifier of the property. |
| `roomTypeId` | integer | Yes | The unique identifier of the room type. |
| `period_start` | string | Yes | The start date of the period to update. Must be in ISO 8601 datetime format (e.g., '2026-02-15T00:00:00Z'). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Subscribe to Webhook

**Slug:** `LODGIFY_SUBSCRIBE_WEBHOOK`

Subscribes 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `event` | string ("rate_change" | "availability_change" | "booking_new_any_status" | "booking_new_status_booked" | "booking_change" | "booking_status_change_booked" | "booking_status_change_tentative" | "booking_status_change_open" | "booking_status_change_declined" | "guest_message_received") | Yes | The event type to subscribe to. Specifies which Lodgify events will trigger the webhook. |
| `target_url` | string | Yes | The callback URL that Lodgify will call when the event is triggered. Must be unique - reusing a URL returns a 409 Conflict error. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Unsubscribe Webhook

**Slug:** `LODGIFY_UNSUBSCRIBE_WEBHOOK`

Tool 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | 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

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
