Skip to content
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!

Get an org-level variables list

GET
/orgs/{org}/actions/variables
curl --request GET \
--url https://gitea.com/api/v1/orgs/example/actions/variables \
--header 'Authorization: Basic <credentials>'
org
required
string

Name of the organization

page
integer

Page number of results to return (1-based)

limit
integer

Page size of results

VariableList

Media typeapplication/json
Array<object>

ActionVariable return value of the query API

object
data

The value of the variable

string
description

The description of the variable

string
name

The name of the variable

string
owner_id

The owner to which the variable belongs

integer format: int64
repo_id

The repository to which the variable belongs

integer format: int64
Examplegenerated
[
{
"data": "example",
"description": "example",
"name": "example",
"owner_id": 1,
"repo_id": 1
}
]

APIError is error format response

message
string
url
string

APINotFound is a not found empty response