# Fly Forward | Discovery Thanks for your interest in Fly Forward. We'll use this session to learn about your team, how you're managing your lease and asset operations today, and what you'd want out of a platform. Hosted by Megan King, Dara Weston at Zeevo Group. 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=meganking&slug=discoverflyforward`. 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": "meganking", "slug": "discoverflyforward", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "0197eb86-35ff-72eb-b91c-0db97f163f00", "value": "" }, { "fieldId": "0197eb86-35ff-72eb-b91c-13b6ebefc9a9", "value": "" }, { "fieldId": "0197eb9d-5cc3-733d-9d71-8e059e174f2e", "value": "" }, { "fieldId": "0197eb9c-93d3-767f-b899-cb4f929e03da", "value": "" }, { "fieldId": "0197eb99-42dd-742f-8dab-edfce3e56733", "value": "0197eb98-0117-70d4-adf0-8d41c64e98dc" }, { "fieldId": "019de42a-82e9-711d-9c96-db33accdc221", "value": "" }, { "fieldId": "0197eb9b-d3b1-71b6-81e1-bc6467a7f5b4", "value": [ "0197eb9a-359e-7344-84d6-2be2ee2cf3ee" ] }, { "fieldId": "0197eba4-6495-72ba-8163-512b1829bcf4", "value": "" }, { "fieldId": "0197eba6-211a-749e-a21f-21ec76ad3e07", "value": "" }, { "fieldId": "019d88ac-586e-73e7-acd0-b526a3924dc4", "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** (`0197eb86-35ff-72eb-b91c-0db97f163f00`, short_text, required) - **Email** (`0197eb86-35ff-72eb-b91c-13b6ebefc9a9`, email, required) - **Job Title** (`0197eb9d-5cc3-733d-9d71-8e059e174f2e`, short_text, required) - **Company Name** (`0197eb9c-93d3-767f-b899-cb4f929e03da`, short_text, required) - **Company Type** (`0197eb99-42dd-742f-8dab-edfce3e56733`, dropdown, required) — one of: Aircraft Leasing Company (id: `0197eb98-0117-70d4-adf0-8d41c64e98dc`), Engine Leasing Company (id: `0197eb98-cb1e-7224-b988-f9b8f25f7f08`), Asset Management Firm (id: `0197eb98-0117-70d4-adf0-90bb7db3b757`), Airline (id: `0197eb98-0117-70d4-adf0-97e27a00ed80`), Other (id: `0197eb98-5e57-738a-9889-d3047904c0fa`) - **Company Website (or LinkedIn)** (`019de42a-82e9-711d-9c96-db33accdc221`, short_text, required) - **What aspects are you looking for? (Select all that apply)** (`0197eb9b-d3b1-71b6-81e1-bc6467a7f5b4`, checkbox, required) — one of: Lease Management (id: `0197eb9a-359e-7344-84d6-2be2ee2cf3ee`), Asset Management (id: `0197eb9a-359e-7344-84d6-2e15c5be32e8`), Deal Management (id: `0197eb9a-89d8-7521-97de-e5ad1955e1d7`), Forecasting (id: `0197eb9a-359e-7344-84d6-32f798401b7e`), Other (id: `0197eb9b-3267-707c-af65-ebb601888a5f`) - **What lease/asset system are you currently using to manage your fleet?** (`0197eba4-6495-72ba-8163-512b1829bcf4`, text, required) - **What are your pain points with your existing system?** (`0197eba6-211a-749e-a21f-21ec76ad3e07`, text, required) - **How many assets are in your fleet?** (`019d88ac-586e-73e7-acd0-b526a3924dc4`, short_text, required) - **Notes** (`0197eb86-35ff-72eb-b91c-162720214a16`, short_text) A structured JSON version of this page is available at https://ro.am/meganking/discoverflyforward.json.