Skip to main content
FuseFuse
IntegrationsDopplerActions

Get one Doppler secret

Retrieve a single secret by name. Returns only name and computed value (raw and note are omitted). Output is sensitive.

Agent markdown

secrets.get · Doppler · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
projectstringYesminLength 1; maxLength 128; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$
configstringYesminLength 1; maxLength 60; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$
namestringYesminLength 1; maxLength 200; pattern ^[A-Z_][A-Z0-9_]{0,199}$

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
namestringYesminLength 1; maxLength 200; pattern ^[A-Z_][A-Z0-9_]{0,199}$
computedstringYesminLength 0; maxLength 51200

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "project": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128,
      "pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
    },
    "config": {
      "type": "string",
      "minLength": 1,
      "maxLength": 60,
      "pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "pattern": "^[A-Z_][A-Z0-9_]{0,199}$"
    }
  },
  "required": [
    "project",
    "config",
    "name"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "pattern": "^[A-Z_][A-Z0-9_]{0,199}$"
    },
    "computed": {
      "type": "string",
      "minLength": 0,
      "maxLength": 51200
    }
  },
  "required": [
    "name",
    "computed"
  ]
}