# Inventory HQ Demo During this 30 min call, we will review the features of Inventory HQ and see if it's a fit for your company Hosted by Eric Oberembt at D&M Roofing and Siding. 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=eric-oberembt&slug=lobby-3`. 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": "eric-oberembt", "slug": "lobby-3", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "019b74a8-a2e8-73ea-bacf-433f13e24361", "value": "" }, { "fieldId": "019b74a8-a2e8-73ea-bacf-4441890b3b49", "value": "" }, { "fieldId": "019b74ac-51bc-7779-98f8-6cc5b0ec15c3", "value": "" }, { "fieldId": "019b74ad-49de-7428-a81d-582e81a1df28", "value": "" }, { "fieldId": "019b74ae-2f99-735a-a69b-8f0bfb719145", "value": "" }, { "fieldId": "019b74ae-c85e-73db-a614-f58038374c6a", "value": "" }, { "fieldId": "019b74af-23d6-751d-b29b-3a71e390fad1", "value": "" }, { "fieldId": "019e043e-5609-730a-b9a0-37ae94132f7b", "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** (`019b74a8-a2e8-73ea-bacf-433f13e24361`, short_text, required) - **Email** (`019b74a8-a2e8-73ea-bacf-4441890b3b49`, email, required) - **Phone Number** (`019b74ac-51bc-7779-98f8-6cc5b0ec15c3`, phone_number, required) - **Do you have any garages or warehouses for storing materials? If so, how many?** (`019b74ad-49de-7428-a81d-582e81a1df28`, text, required) - **When you buy materials in bulk, what is your average annual spend, and which items do you typically stock?** (`019b74ae-2f99-735a-a69b-8f0bfb719145`, text, required) - **Do you provide and loan out computers, Ipads, drones, ladders, etc. to employees or sub contractors? ** (`019b74ae-c85e-73db-a614-f58038374c6a`, short_text, required) - **What CRM do you use?** (`019b74af-23d6-751d-b29b-3a71e390fad1`, short_text, required) - **Who can we thank for sending you our way?** (`019e043e-5609-730a-b9a0-37ae94132f7b`, short_text, required) A structured JSON version of this page is available at https://ro.am/eric-oberembt/lobby-3.json.