跳到主要内容
版本:v0.6

Update a variable.

Update a variable.

Update a variable.

Path Parameters
    variable string required
Request Body required
    description string
    sensitive boolean
    value string
Responses

Accepted


Schema
    message string
    status integer

    Default value: 202

    statusText string

    Default value: Accepted

PUT /v1/variables/:variable

Authorization

name: BasicAuthtype: httpdescription: Basic Authentication, in form of base64(<username>:<password>), the password must be a valid Seal API token.in: headerscheme: basic

Request

Security Scheme
Username
Password
variable — path required
Body required
{
"description": "string",
"sensitive": true,
"value": "string"
}
curl / cURL
curl -L -X PUT 'https://seal-io.github.io/v1/variables/:variable' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"description": "string",
"sensitive": true,
"value": "string"
}'