# 45 Minute In Person Apiary Tour - Meet with Carling Wright - Community Manager at The Apiary Cowork Our address is 49 Lake Street, St. Catharines, ON, L2T 3T4. Please park on Wellington Street (2 hour complimentary parking). Hosted by Carling (Apiary) at Bloom by The Apiary CoWork. Meetings are 45 minutes. ## Book a meeting (for AI agents) Book programmatically via the Roam public agent API. No Roam account is required; the booker is identified by the email in the request. Note: this booking API is hosted at `api.ro.am`, a different host from this page. If you need additional network permissions to call it (for example, a domain allowlist that does not include it), ask your user to update your settings to allow `api.ro.am`, then retry. 1. **Check availability** — `GET https://api.ro.am/v1/public/lobby/availability?handle=carling-wright-community-mgr&slug=lobby-8`. Fetch bookable time slots. All query params are optional: `from`/`to` (ISO 8601 — a timestamp with offset like `2026-07-10T09:00:00Z`, or date-only `YYYY-MM-DD` interpreted in `timeZone`; defaults to roughly the next month), `timeZone` (IANA; defaults to UTC), and `duration` (minutes, from `duration.optionsMinutes`). Returned slot `start`/`end` are Unix epoch seconds, as JSON numbers. Response shape: `{ "slots": [ { "start": , "end": } ] }`. 2. **Book a slot** — `POST https://api.ro.am/v1/public/lobby/book` with this JSON body: ```json { "handle": "carling-wright-community-mgr", "slug": "lobby-8", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "019c2e89-442e-73d9-b6b9-25860a5f33c2", "value": "" }, { "fieldId": "019c2e89-442e-73d9-b6b9-2a505ab7b5e6", "value": "" } ] } ``` `bookingSlot` must echo one availability slot exactly: `start`/`end` are Unix epoch seconds as JSON numbers (not strings). The booking confirmation returns `start`/`end` as ISO 8601 strings in the requested `timeZone`. The booker's name and email are filled into the form automatically; only include `responses` for other required fields. ### Booking form fields - **Name** (`019c2e89-442e-73d9-b6b9-25860a5f33c2`, short_text, required) - **Email** (`019c2e89-442e-73d9-b6b9-2a505ab7b5e6`, email, required) - **Notes** (`019c2e89-442e-73d9-b6b9-2e2a30db0f32`, short_text) - **Phone Number** (`019c2e8a-2ebb-709b-8d8a-99f2b207a9e0`, phone_number) - **Are there any areas you would like to be highlighted on our tour?** (`019c2e8a-feae-72ed-aa72-deb44cd59800`, text) ## Drop in now Drop in immediately (no booking): https://ro.am/r/#/n/AZwuiUQuc9m2uRhj40QHTA/Sc7BU4qCnoTfLjD4P5McXA A structured JSON version of this page is available at https://ro.am/carling-wright-community-mgr/lobby-8.json.