Developer docs

Roam integration

Roam HQ provides APIs for secure messaging, chat, file sharing, and…

Updated June 2026 39 actions available

Provider
roam
Category
Communication
Setup
One-click OAuth (we host the OAuth app)
Actions
39 available

Quick start

Call Roam from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Roam's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "ROAM_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

OverSkill hosts the OAuth application for Roam. End-users click Connect on the integration card in your app, complete the OAuth flow with Roam, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.

Supported auth schemes: API_KEY, OAUTH2.

Available actions

39 actions exposed via the Roam integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 39 actions
  • ROAM_GET_SCIM_SCHEMA
  • ROAM_GET_SCIM_USER
  • ROAM_GET_TEST
  • ROAM_GET_TOKEN_INFO
  • ROAM_GET_USER_INFO
  • ROAM_LIST_CHATS
  • ROAM_LIST_GROUP_MEMBERS
  • ROAM_LIST_GROUPS
  • ROAM_LIST_LOBBIES
  • ROAM_LIST_MEETINGS
  • ROAM_LIST_RECORDINGS
  • ROAM_LIST_ROAM_SCIM_USERS
  • ROAM_LIST_SCHEMAS
  • ROAM_LIST_TRANSCRIPTS
  • ROAM_LIST_USER_AUDIT_LOG
  • ROAM_LIST_USERS
  • ROAM_LOOKUP_USER
  • ROAM_PATCH_GROUP
  • ROAM_PATCH_USER
  • ROAM_POST_CHAT
  • ROAM_REMOVE_GROUP_MEMBERS
  • ROAM_REPLACE_GROUP
  • ROAM_REPLACE_USER
  • ROAM_SEND_MESSAGE
  • ROAM_SEND_TYPING
  • ROAM_UPDATE_MEETING_LINK
  • ROAM_UPLOAD_ITEM

Build with Roam

Open OverSkill, describe what you want to build, and reference Roam in your prompt — the AI will wire up the integration automatically.