Integration Lab
Show how ParkLift works without replacing the PMS.
This screen demonstrates the low-friction integration story: booking links, pasted CSV exports, webhook-style payloads, and API-ready adapters later.
CSV reservation import demo
Paste CSV rows using this format:
site_slug,guest_name,guest_email,arrival_date,departure_date harbor-light-sleep-loft,Chris Demo,chris@example.com,2026-06-10,2026-06-12 island-treehouse-camp,Alex Guest,alex@example.com,2026-06-14,2026-06-17
Webhook payload demo
Simulate an incoming booking event from Zapier, a PMS webhook, or future API bridge.
Integration events
| Time | Source | Event Type | Status | Notes | Payload |
|---|---|---|---|---|---|
| 2026-05-31 08:15 | Webhook Demo | reservation.created | Processed + Reservation Created | Webhook payload matched a premium site and created a tracked reservation. | {
"event_type": "reservation.created",
"source": "Webhook Demo",
"site_slug": "jungle-safari-retreat",
"guest_name": "Webhook Guest",
"guest_email": "webhook@example.com",
"arrival_date": "2026-06-20",
"departure_date": "2026-06-23"
} |