action vercel_delete_secret { label: "Delete a secret" description: "This deletes the user's secret defined in the URL." provider: vercel method: DELETE path: "/v2/secrets/{idOrName}" encoding: json input: { type: "object" properties: { idOrName: { type: "string" description: "The name or the unique identifier to which the secret belongs to." } teamId: { type: "string" } } required: ["idOrName"] additionalProperties: false } output: { type: "object" required: ["created", "name", "uid"] properties: { created: { type: "number" description: "The date when the secret was created." } name: { type: "string" description: "The name of the deleted secret." } uid: { type: "string" description: "The unique identifier of the deleted secret." } } } }