Rkvst integration
DataTrails provides an evidence management platform that delivers a reliable…
- 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.
-
RKVST_DOWNLOAD_EVENT_ATTACHMENT -
RKVST_GET_APP_REGISTRATION -
RKVST_GET_ASSET -
RKVST_GET_BLOB -
RKVST_GET_EVENT -
RKVST_GET_IAM_SUBJECT -
RKVST_GET_MEMBER -
RKVST_GET_PUBLIC_ASSET -
RKVST_GET_PUBLIC_ASSET_EVENT -
RKVST_GET_TENANCY -
RKVST_LIST_APP_REGISTRATIONS -
RKVST_LIST_ASSET_EVENTS
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.