跳转到内容
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!

Update a user-level variable which is created by current doer

PUT
/user/actions/variables/{variablename}
curl --request PUT \
--url https://gitea.com/api/v1/user/actions/variables/example \
--header 'Authorization: Basic <credentials>' \
--header 'Content-Type: application/json' \
--data '{ "description": "example", "name": "example", "value": "example" }'
variablename
required
string

Name of the variable

Media typeapplication/json

UpdateVariableOption the option when updating variable

object
description

Description of the variable to update

string
name

New name for the variable. If the field is empty, the variable name won’t be updated.

string
value
required

Value of the variable to update

string
Examplegenerated
{
"description": "example",
"name": "example",
"value": "example"
}

Response when updating a variable

Media typeapplication/json

Response when updating a variable

Media typeapplication/json

APIError is error format response

Media typeapplication/json
message
string
url
string

APINotFound is a not found empty response

Media typeapplication/json