Discussions
Genre-Specific Graphic Design Techniques
Genre-specific graphic design techniques for book cover graphic design involve tailoring visual elements to align with the themes and expectations of a particular genre. Each genre has its own visual language, and the cover design must reflect this to attract the right audience. Here’s a breakdown of techniques for different genres:
Picking new Firstname via the API
How can I get the new introduced First- and Lastname thru the API?
Not able to fetch PaymentLink urls for Booking Website
Hey team, I'm building our own Booking website using Lodgify APIs. From what I understand after reading the API docs, once the potential guest clicks on "Book" in our website, the flow should be:
Calendar/Availability Endpoint 404 Error - Integration Help Needed
I’m working on integrating the Lodgify API for a vacation rental booking system and encountering issues with the calendar/availability endpoints. I've tried multiple endpoint variations but consistently receive 404 errors.
Airbnb Experience
Existe alguna manera de obtener informacion de los tours que tengo en airbnb?
Get all the bookings, in the past and futur
Hey,
Get Quote Error
I'm using v2 using this endpoint
https://api.lodgify.com/v2/quote/{propertyId}
Close room with API
Hi, I need to close a room using API, is there a way to do it?
Rentals not being pushed to BookingPal through API
Hello, I have two rentals that are not being pushed to BookingPal and we can't figure out why (all others are). I already contacted BookingPal about this. What information do you need to help me with this?
Why does the notes field always return a null value when creating a booking, even though I include a value in the payload? How can I ensure that the notes field is properly populated during the booking creation process?
const payload = {
source_text: data.source_text || "Website Form Submission",
notes: data.note || "Default reservation note",
arrival: data.checkin || "",
departure: data.checkout || "",
property_id: 631930,
status: "Open",
rooms: [
{
room_type_id: 698887,
guest_breakdown: {
adults: data.adult || 0,
children: data.children || 0,
infants: 0,
pets: 0,
},
key_code: "",
},
],
guest: {
guest_name: {
first_name: data.first_name || "Unknown",
last_name: data.last_name || "Unknown",
},
email: data.email || "[email protected]",
phone: data.phone_number || "No phone provided",
},
messages: [
{
subject: "Reservation Confirmation",
message: Thank you for your reservation, ${data.first_name}! Your stay is confirmed from ${data.checkin} to ${data.checkout}.
,
type: "Owner",
send_notification: true,
},
],
bookability: "InstantBooking",
totalAmount: 0.0,
currency_code: "USD",
};