← Back to Dashboard
Basic Info
Guest Chat Branding (How your chat page looks to guests)
Guest Information (What the AI uses to answer guests)
WiFi & Connectivity
Local Knowledge
Cancel

Share This Link With Your Guests

Send this link to guests so they can chat with the AI about your property. No app download or login needed.

Works on any device — mobile, tablet, or desktop. Guests just enter their name and start chatting.

Where to share it

📧
Booking confirmation
Include in your check-in email
💬
Airbnb/Vrbo message
Send in your first guest message
🏠
QR code at property
Print and place near the entrance
Loading conversations...

Webhook Endpoint

Send guest messages to this endpoint and get AI responses back instantly.

POST https://pinekeep.polsia.app/api/webhook/message
// Example request { "property_id": 1, "guest_name": "Sarah", "guest_contact": "sarah@email.com", "message": "What's the WiFi password?" } // Example response { "success": true, "conversation_id": 1, "response": "Welcome! The WiFi network is..." }

Test with cURL

curl -X POST https://pinekeep.polsia.app/api/webhook/message \ -H "Content-Type: application/json" \ -d '{"property_id": 1, "message": "What time is check-in?"}'