Skip to main content
FuseFuse
IntegrationsDopplerActions

Delete one Doppler secret

Delete a single secret by name. Maps HTTP 204 to deleted and 404 to already_absent.

Agent markdown

secrets.delete · Doppler · v1

Details

Risk
Destructive
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=false, destructive=true, 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
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}$
outcomestringYesenum deleted | already_absent

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": {
    "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}$"
    },
    "outcome": {
      "type": "string",
      "enum": [
        "deleted",
        "already_absent"
      ]
    }
  },
  "required": [
    "project",
    "config",
    "name",
    "outcome"
  ]
}