# David's Lobby READ THIS BEFORE MAKING AN APPOINTMENT.IMPORTANT: If you are going to attend from your phone be sure to download the Roam app so you could connect to the meeting. Hosted by David Glover at Put Me On Inc.. Meetings are 30 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=putmeon&slug=`. 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": "putmeon", "slug": "", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "0192c648-3ac1-7556-af81-73ee02f583c3", "value": "" }, { "fieldId": "0192c648-3ac1-7556-af81-7fadb36a8835", "value": "" }, { "fieldId": "0192ddd1-659a-788b-9ebe-85531f371c50", "value": "" }, { "fieldId": "0192ddcc-baac-788b-9ebe-3d35f2c330cf", "value": "" }, { "fieldId": "0192ddd0-4d12-788b-9ebe-56e4ddb55b9a", "value": "0192ddcd-5a0b-7cce-a200-19f57508f530" } ] } ``` `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** (`0192c648-3ac1-7556-af81-73ee02f583c3`, short_text, required) - **Email** (`0192c648-3ac1-7556-af81-7fadb36a8835`, email, required) - **Artist Name** (`0192ddd1-659a-788b-9ebe-85531f371c50`, short_text, required) - **Cell number** (`0192ddcc-baac-788b-9ebe-3d35f2c330cf`, phone_number, required) - **Reason for meeting?** (`0192ddd0-4d12-788b-9ebe-56e4ddb55b9a`, dropdown, required) — one of: Speak about membership (id: `0192ddcd-5a0b-7cce-a200-19f57508f530`), Create Content (already a member (must be booked at least a day prior) (id: `01958751-ce42-75ac-9942-54d8568aca7a`), Book a recording session (must be booked at least a day prior and put how many hours you want in the notes) (id: `0197b3f6-bba6-703b-8a36-4a9376198a8a`), Song roll out (already a member) (id: `0192ddcd-5a0b-7cce-a200-234d8c590a7c`), Consultatiom (already a member) (id: `0192ddcd-5a0b-7cce-a200-2f2583c5bbe2`), Other (write reason in notes) (id: `0192ddcf-afce-7cce-a200-3239dc9481cf`) - **Notes** (`0192c648-3ac1-7556-af81-83d0c05fd72a`, short_text) ## Drop in now Drop in immediately (no booking): https://ro.am/r/#/n/AZB1iXoIdV-xp8_d96fdVg/HLwuBfbbN2vAAXBSvvmL1w A structured JSON version of this page is available at https://ro.am/putmeon.json.