# 45-minute consultation with Jay Boykin A working conversation about your numbers — your business or your board. Come with a recent P&L (or your reserve study, for HOA questions) and the question you actually want answered. 45 minutes, video, in your browser. Hosted by Jay Boykin at Jay Boykin | Just Human. 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=JayBoykin&slug=alignedimpactconsult`. 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": "JayBoykin", "slug": "alignedimpactconsult", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "0198e345-ab2e-7650-9387-82ccbec483bc", "value": "" }, { "fieldId": "0198e345-ab2e-7650-9387-86f560719b2d", "value": "" }, { "fieldId": "019f9f76-0ccd-758f-a5e1-7f06ba6ffa84", "value": "" }, { "fieldId": "0198e345-ab2e-7650-9387-88e31fbcf04c", "value": "019f9f79-ece7-703b-aa62-921e10637264" }, { "fieldId": "019f9f7c-6ce6-7198-8645-95727f22e917", "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** (`0198e345-ab2e-7650-9387-82ccbec483bc`, short_text, required) - **Email** (`0198e345-ab2e-7650-9387-86f560719b2d`, email, required) - **Phone Number** (`019f9f76-0ccd-758f-a5e1-7f06ba6ffa84`, phone_number, required) - **Which best describes you?** (`0198e345-ab2e-7650-9387-88e31fbcf04c`, dropdown, required) — one of: Business owner / operator (id: `019f9f79-ece7-703b-aa62-921e10637264`), HOA board member (id: `019f9f79-ece7-703b-aa62-945abc46c49c`), HOA property manager (id: `019f9f79-ece7-703b-aa62-9b0966fce873`), Other (id: `019f9f7a-443b-7404-b626-1f971919dee8`) - **What's the one question you'd most like answered?** (`019f9f7c-6ce6-7198-8645-95727f22e917`, text, required) - **How did you hear about Aligned Impact?** (`019f9f7e-06d6-704f-a0c6-527fc642c046`, dropdown) — one of: Google search (id: `019f9f7c-fefe-73e8-b686-53688f7728d0`), YouTube (id: `019f9f7c-fefe-73e8-b686-57f7ba1e05e3`), LinkedIn (id: `019f9f7c-fefe-73e8-b686-58b12647ccde`), Referral (id: `019f9f7d-a24f-738c-9bb3-8829da3317e7`), Podcast or speaking (id: `019f9f7d-c211-73ec-87d0-031fd57916ef`), Other (id: `019f9f7d-e0e1-739c-a479-542ff265defd`) A structured JSON version of this page is available at https://ro.am/JayBoykin/alignedimpactconsult.json.