@velocity-bpa/n8n-nodes-cloudbeds-pms
v1.0.0
Published
n8n community node for Cloudbeds PMS API integration
Readme
n8n-nodes-cloudbeds-pms
[Velocity BPA Licensing Notice]
This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).
Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.
For licensing information, visit https://velobpa.com/licensing or contact [email protected].
A comprehensive n8n community node for the Cloudbeds Property Management System, providing access to 6 core resources for hospitality automation. Manage reservations, guests, rooms, housekeeping operations, rates, and property data with seamless integration capabilities for hotel and vacation rental management workflows.
Features
- Reservation Management - Create, update, retrieve, and manage hotel reservations and bookings
- Guest Operations - Handle guest profiles, contact information, and customer relationship data
- Room Administration - Manage room inventory, types, availability, and occupancy status
- Housekeeping Control - Track room cleaning status, maintenance requests, and housekeeping schedules
- Rate Management - Configure pricing strategies, seasonal rates, and dynamic pricing rules
- Property Configuration - Access property details, amenities, policies, and facility information
- Real-time Synchronization - Keep your automation workflows synchronized with live PMS data
- Comprehensive Error Handling - Built-in retry logic and detailed error reporting for reliable operations
Installation
Community Nodes (Recommended)
- Open n8n
- Go to Settings → Community Nodes
- Click Install a community node
- Enter
n8n-nodes-cloudbeds-pms - Click Install
Manual Installation
cd ~/.n8n
npm install n8n-nodes-cloudbeds-pmsDevelopment Installation
git clone https://github.com/Velocity-BPA/n8n-nodes-cloudbeds-pms.git
cd n8n-nodes-cloudbeds-pms
npm install
npm run build
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-cloudbeds-pms
n8n startCredentials Setup
| Field | Description | Required | |-------|-------------|----------| | API Key | Your Cloudbeds PMS API key from the developer settings | Yes | | Property ID | The unique identifier for your property in Cloudbeds | Yes | | Environment | API environment (production or sandbox) | Yes |
Resources & Operations
1. Reservation
| Operation | Description | |-----------|-------------| | Create | Create a new reservation with guest and room details | | Get | Retrieve reservation information by ID | | Update | Modify existing reservation details | | List | Get multiple reservations with filtering options | | Cancel | Cancel an existing reservation | | Check In | Process guest check-in for a reservation | | Check Out | Process guest check-out and finalize stay |
2. Guest
| Operation | Description | |-----------|-------------| | Create | Add a new guest profile to the system | | Get | Retrieve guest information by ID | | Update | Modify guest profile details | | List | Get multiple guest profiles with search filters | | Delete | Remove a guest profile from the system | | Search | Find guests by name, email, or phone number |
3. Room
| Operation | Description | |-----------|-------------| | Get | Retrieve room details and current status | | Update | Modify room information and settings | | List | Get all rooms with availability status | | Get Availability | Check room availability for date ranges | | Set Status | Update room status (available, occupied, maintenance) | | Get Types | Retrieve room type configurations |
4. Housekeeping
| Operation | Description | |-----------|-------------| | Get Tasks | Retrieve housekeeping tasks for specific dates | | Update Task | Update housekeeping task status | | Create Task | Add new housekeeping or maintenance task | | List Assignments | Get housekeeping staff assignments | | Get Status | Check room cleaning and maintenance status | | Complete Task | Mark housekeeping task as completed |
5. Rate
| Operation | Description | |-----------|-------------| | Get | Retrieve rate information for specific dates | | Update | Modify room rates and pricing | | List | Get rate schedules and pricing calendars | | Create Plan | Set up new rate plans and packages | | Get Availability | Check rate availability for date ranges | | Bulk Update | Update rates for multiple dates at once |
6. Property
| Operation | Description | |-----------|-------------| | Get | Retrieve property details and configuration | | Update | Modify property information and settings | | Get Amenities | List property amenities and facilities | | Get Policies | Retrieve property policies and rules | | Get Settings | Access property-specific configuration settings |
Usage Examples
// Create a new reservation
const reservationData = {
"guestId": "12345",
"roomTypeId": "67890",
"checkInDate": "2024-02-15",
"checkOutDate": "2024-02-18",
"adults": 2,
"children": 0,
"totalAmount": 450.00,
"status": "confirmed"
};// Check room availability for specific dates
const availabilityCheck = {
"startDate": "2024-03-01",
"endDate": "2024-03-07",
"roomTypeId": "suite_001",
"adults": 2,
"children": 1
};// Update housekeeping task status
const housekeepingUpdate = {
"taskId": "hk_789",
"roomNumber": "101",
"status": "completed",
"completedBy": "staff_456",
"notes": "Deep cleaning completed, room ready for guest"
};// Bulk update room rates for peak season
const rateUpdate = {
"roomTypeId": "standard_room",
"startDate": "2024-06-01",
"endDate": "2024-08-31",
"baseRate": 185.00,
"currency": "USD"
};Error Handling
| Error | Description | Solution | |-------|-------------|----------| | 401 Unauthorized | Invalid API key or expired credentials | Verify API key in credentials and regenerate if necessary | | 404 Not Found | Requested resource (reservation, guest, room) not found | Confirm the ID exists and is correctly formatted | | 400 Bad Request | Invalid data format or missing required fields | Check request payload against API documentation | | 429 Rate Limited | Too many API requests in short timeframe | Implement delays between requests or reduce frequency | | 500 Server Error | Internal Cloudbeds API error | Retry request after brief delay, contact support if persistent | | Connection Timeout | Network connectivity issues with Cloudbeds servers | Check internet connection and retry operation |
Development
npm install
npm run build
npm test
npm run lint
npm run devAuthor
Velocity BPA
- Website: velobpa.com
- GitHub: Velocity-BPA
Licensing
This n8n community node is licensed under the Business Source License 1.1.
Free Use
Permitted for personal, educational, research, and internal business use.
Commercial Use
Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license.
For licensing inquiries: [email protected]
See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for details.
Contributing
Contributions are welcome! Please ensure:
- Code follows existing style conventions
- All tests pass (
npm test) - Linting passes (
npm run lint) - Documentation is updated for new features
- Commit messages are descriptive
Support
- Issues: GitHub Issues
- Cloudbeds API Documentation: Cloudbeds Developer Portal
- Hospitality Automation Community: n8n Community Forum
