OnBooq Changelog
Stay updated with the latest releases, improvements, and bug fixes for the OnBooq platform.
Recent Releases
Check the latest updates below. Each release includes new features for enquiry capture, performance improvements, and fixes to ensure your Enquiry Assistant runs smoothly 24/7.
New Features
- Added advanced AI responses for common customer questions about services and pricing
- Introduced customizable booking prompts that guide visitors to schedule appointments directly in chat
- New webhook support for integrating enquiry data with your CRM systems
Improvements
- Reduced response latency by 40% for after-hours enquiries
- Enhanced analytics dashboard with real-time conversion tracking
Bug Fixes
- Fixed intermittent notification failures for mobile users
- Resolved issue where chat sessions dropped during high traffic periods
- Patched potential security vulnerability in API token handling
Improvements
- Optimized database queries for faster lead capture
- Updated UI components for better mobile responsiveness
New Features
- Launched core Enquiry Assistant with 24/7 lead capture and instant FAQ responses
- Integrated basic booking flow to convert chats into scheduled jobs
Breaking Changes
- Deprecated legacy
enquiry-v1endpoint; migrate tohttps://api.example.com/v2/enquiries - Updated required
Authorizationheader format to Bearer{YOUR_TOKEN}
Upgrade Guide
Follow these steps to upgrade your OnBooq instance safely.
Backup Data
Export your current configuration and enquiry logs.
curl -H "Authorization: Bearer YOUR_TOKEN" \
https://api.example.com/v1/export?type=backup
Update SDK
Install the latest version using your package manager.
npm install onbooq-sdk@1.3.0
yarn add onbooq-sdk@1.3.0
Migrate API Calls
Update deprecated endpoints in your integration code.
// Before (v1.1.0)
fetch('https://api.example.com/enquiry-v1', {
headers: { 'X-API-Key': 'YOUR_KEY' }
});
// After (v1.3.0)
fetch('https://api.example.com/v2/enquiries', {
headers: { 'Authorization': 'Bearer YOUR_TOKEN' }
});
Test & Deploy
Run tests and deploy to production.
Verify your version by calling GET /version on https://api.example.com. Subscribe to our RSS feed for instant notifications.
Upcoming Roadmap
Stay ahead with these planned enhancements.
AI Enhancements
Deeper conversational AI with service-specific knowledge bases.
Multi-Channel
SMS and email enquiry capture alongside web chat.
Advanced Analytics
Predictive lead scoring and A/B testing tools.
Migration Notes
Review these key changes:
| Old Endpoint | New Endpoint | Notes |
|---|---|---|
/enquiry-v1 | /v2/enquiries | Required auth upgrade |
X-API-Key | Authorization: Bearer | Use {YOUR_TOKEN} |
Update your code as shown in the upgrade steps above.
Last updated today