Skip to content
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!
This is the documentation of the next version, still under development. See the latest release.

Update an org-level variable

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

Name of the organization

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 an org-level variable

Response when updating an org-level variable

APIError is error format response

message
string
url
string

APINotFound is a not found empty response