# Talent Strategy Orientation Introducing talent options Hosted by Chris Whitrod, Melvin Cajina, Nixie Padasas, Paula Iglesias, Client Care at Remote Workmate. Meetings are 60 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=RemoteWorkmate&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": "RemoteWorkmate", "slug": "", "bookingSlot": { "start": "", "end": "" }, "timeZone": "America/New_York", "booker": { "email": "booker@example.com", "name": "Booker Name" }, "responses": [ { "fieldId": "0194b6d8-fb53-703a-9f17-e8f5658793c8", "value": "" }, { "fieldId": "0194b6d8-fb53-703a-9f17-ee15c5557d19", "value": "" }, { "fieldId": "01953a64-f7e5-704b-8af1-bc3497f2c8ef", "value": "" }, { "fieldId": "01953a65-7e82-711c-aeb6-e2f6c49a7cb6", "value": "" }, { "fieldId": "01953a65-ebca-761d-9543-6cbdd7ebb396", "value": "" }, { "fieldId": "01953a68-27d1-73c9-9809-696f2878f22f", "value": "" }, { "fieldId": "0194b6d8-fb53-703a-9f17-f3b2361bc352", "value": "" }, { "fieldId": "01953a76-ae15-7065-981d-4cbb4f8a06b0", "value": "01953a74-9bb6-73ce-9d68-50a8179155a6" } ] } ``` `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** (`0194b6d8-fb53-703a-9f17-e8f5658793c8`, short_text, required) - **Email** (`0194b6d8-fb53-703a-9f17-ee15c5557d19`, email, required) - **Contact Number (Mobile preferred):** (`01953a64-f7e5-704b-8af1-bc3497f2c8ef`, short_text, required) - **Company/Business/Organization Name:** (`01953a65-7e82-711c-aeb6-e2f6c49a7cb6`, short_text, required) - **What role/s are you looking to fill?** (`01953a65-ebca-761d-9543-6cbdd7ebb396`, text, required) - **Biggest challenge you need to address in the next 12 months? (e.g., lack of leads, online engagement, admin work eating up key members' time, lower operational costs)?** (`01953a68-27d1-73c9-9809-696f2878f22f`, text, required) - **How many people are you thinking of adding to your team?** (`0194b6d8-fb53-703a-9f17-f3b2361bc352`, short_text, required) - **Where did you hear about Remote Workmate?** (`01953a76-ae15-7065-981d-4cbb4f8a06b0`, radio, required) — one of: Referral (id: `01953a74-9bb6-73ce-9d68-50a8179155a6`), Website (id: `01953a74-9bb7-726d-a1c6-05db6d2a4cc7`), LinkedIn (id: `01953a74-9bb7-726d-a1c6-0820e3deb4e4`), Facebook (id: `019f25bf-ae1f-740b-a631-631e45370fe9`), Instagram (id: `019f25bf-e306-7442-a8dc-9c8c0e1d6cf6`), Search Engines (id: `01953a74-d7df-7439-b564-3e0b577d5f3a`), Other (id: `01953a75-01eb-775e-b1c8-ebd95bed4045`) - **If Other, please indicate here** (`01953a77-165b-75dd-8c1a-a0900ff37f80`, text) - **Phone Number** (`019b018c-fb32-7419-b519-3a17e0dcfeb8`, phone_number) A structured JSON version of this page is available at https://ro.am/RemoteWorkmate.json.