action vercel_get_secret { label: "Get a single secret" description: "Retrieves the information for a specific secret by passing either the secret id or name in the URL." provider: vercel method: GET path: "/v3/secrets/{idOrName}" encoding: json input: { type: "object" properties: { decrypt: { type: "string" description: "Whether to try to decrypt the value of the secret. Only works if `decryptable` has been set to `true` when the secret was created." enum: ["true", "false"] } 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" description: "Data representing a secret." required: ["created", "name", "uid"] properties: { created: { type: "string" format: "date-time" description: "The date when the secret was created." } createdAt: { type: "number" description: "Timestamp for when the secret was created." } decryptable: { type: "boolean" description: "Indicates whether the secret value can be decrypted after it has been created." } name: { type: "string" description: "The name of the secret." } projectId: { type: "string" description: "The unique identifier of the project which the secret belongs to." } teamId: { type: ["string", "null"] description: "The unique identifier of the team the secret was created for." } uid: { type: "string" description: "The unique identifier of the secret." } userId: { type: "string" description: "The unique identifier of the user who created the secret." } value: { type: "string" description: "The value of the secret." } } } }