Developer docs

Rkvst integration

DataTrails provides an evidence management platform that delivers a reliable…

Updated June 2026 24 actions available

Provider
rkvst
Category
Other
Setup
User-supplied API key
Actions
24 available

Quick start

Call Rkvst from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Rkvst'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(
  "RKVST_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

End-users supply their own Rkvst API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

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

Show all 24 actions
  • RKVST_LIST_ASSETS
  • RKVST_LIST_IAM_SUBJECTS
  • RKVST_LIST_MEMBERS
  • RKVST_LIST_PUBLIC_ASSET_EVENTS
  • RKVST_LIST_PUBLIC_ASSETS
  • RKVST_LIST_TENANCIES
  • RKVST_PROMOTE_MEMBER
  • RKVST_RETRIEVE_ASSET_ATTACHMENT_METADATA
  • RKVST_RETRIEVE_CAPS
  • RKVST_RETRIEVE_EVENT_ATTACHMENT_METADATA
  • RKVST_SEARCH_EVENTS
  • RKVST_UPDATE_APP_REGISTRATION

Build with Rkvst

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