Developer docs

Doppler integration

Doppler is a secrets management platform that helps developers organize and…

Updated June 2026 62 actions available

Provider
doppler
Category
Other
Setup
User-supplied API key
Actions
62 available

Quick start

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

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

Show all 62 actions
  • DOPPLER_CONFIGS_LOCK
  • DOPPLER_CONFIGS_UNLOCK
  • DOPPLER_CONFIGS_UPDATE
  • DOPPLER_CREATE_ENCRYPTED
  • DOPPLER_CREATE_PLAIN
  • DOPPLER_CREATE_SERVICE_TOKEN
  • DOPPLER_DELETE_SERVICE_TOKEN
  • DOPPLER_DELETE_WEBHOOK
  • DOPPLER_DISABLE_WEBHOOK
  • DOPPLER_DYNAMIC_SECRETS_REVOKE_LEASE
  • DOPPLER_ENABLE_WEBHOOK
  • DOPPLER_ENVIRONMENTS_CREATE
  • DOPPLER_ENVIRONMENTS_DELETE
  • DOPPLER_ENVIRONMENTS_GET
  • DOPPLER_ENVIRONMENTS_LIST
  • DOPPLER_ENVIRONMENTS_RENAME
  • DOPPLER_GET_WEBHOOK
  • DOPPLER_GET_WORKPLACE_USER
  • DOPPLER_GROUPS_DELETE_MEMBER
  • DOPPLER_INTEGRATIONS_LIST
  • DOPPLER_INVITES_LIST
  • DOPPLER_LIST_CHANGE_REQUESTS
  • DOPPLER_LIST_PROJECT_MEMBERS
  • DOPPLER_LIST_SERVICE_TOKENS
  • DOPPLER_LIST_USERS
  • DOPPLER_LIST_WEBHOOKS
  • DOPPLER_PROJECT_MEMBERS_DELETE
  • DOPPLER_PROJECT_MEMBERS_GET
  • DOPPLER_PROJECT_PERMISSIONS_LIST
  • DOPPLER_PROJECT_ROLES_GET
  • DOPPLER_PROJECT_ROLES_LIST
  • DOPPLER_PROJECTS_CREATE
  • DOPPLER_PROJECTS_DELETE
  • DOPPLER_PROJECTS_GET
  • DOPPLER_PROJECTS_LIST
  • DOPPLER_SECRETS_DELETE
  • DOPPLER_SECRETS_DOWNLOAD
  • DOPPLER_SECRETS_GET
  • DOPPLER_SECRETS_LIST
  • DOPPLER_SECRETS_NAMES
  • DOPPLER_SECRETS_UPDATE
  • DOPPLER_SECRETS_UPDATE_NOTE
  • DOPPLER_UPDATE_PROJECT
  • DOPPLER_UPDATE_SECRET_NOTE
  • DOPPLER_UPDATE_WEBHOOK
  • DOPPLER_UPDATE_WORKPLACE
  • DOPPLER_WORKPLACE_GET
  • DOPPLER_WORKPLACE_ROLES_GET
  • DOPPLER_WORKPLACE_ROLES_LIST
  • DOPPLER_WORKPLACE_ROLES_LIST_PERMISSIONS

Build with Doppler

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