Developer docs

Dovetail integration

Dovetail is an Australian software company that provides tools for…

Updated June 2026 51 actions available

Provider
dovetail
Category
Analytics
Setup
User-supplied API key
Actions
51 available

Quick start

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

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

Show all 51 actions
  • DOVETAIL_DELETE_INSIGHT
  • DOVETAIL_DELETE_NOTE
  • DOVETAIL_DELETE_TOPIC
  • DOVETAIL_EXPORT_DATA
  • DOVETAIL_EXPORT_DOC
  • DOVETAIL_EXPORT_INSIGHT
  • DOVETAIL_EXPORT_NOTE
  • DOVETAIL_GET_CONTACT
  • DOVETAIL_GET_DATA
  • DOVETAIL_GET_DOC
  • DOVETAIL_GET_FILE
  • DOVETAIL_GET_FOLDER
  • DOVETAIL_GET_INSIGHT
  • DOVETAIL_GET_NOTE
  • DOVETAIL_GET_PROJECT
  • DOVETAIL_GET_TOKEN_INFO
  • DOVETAIL_IMPORT_DATA_FILE
  • DOVETAIL_IMPORT_DOC_FILE
  • DOVETAIL_IMPORT_INSIGHT_FILE
  • DOVETAIL_IMPORT_NOTE_FILE
  • DOVETAIL_LIST_CONTACTS
  • DOVETAIL_LIST_DATA
  • DOVETAIL_LIST_DOCS
  • DOVETAIL_LIST_FOLDERS
  • DOVETAIL_LIST_HIGHLIGHTS
  • DOVETAIL_LIST_INSIGHTS
  • DOVETAIL_LIST_NOTES
  • DOVETAIL_LIST_PROJECTS
  • DOVETAIL_LIST_TAGS
  • DOVETAIL_LIST_USER_DOCS
  • DOVETAIL_LIST_USER_INSIGHTS
  • DOVETAIL_MAGIC_SEARCH
  • DOVETAIL_UPDATE_CHANNEL
  • DOVETAIL_UPDATE_CONTACT
  • DOVETAIL_UPDATE_DATA
  • DOVETAIL_UPDATE_DOC
  • DOVETAIL_UPDATE_INSIGHT
  • DOVETAIL_UPDATE_NOTE
  • DOVETAIL_UPDATE_TOPIC

Build with Dovetail

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