Get organization's variable by name
GET
/orgs/{org}/actions/variables/{variablename}
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”org
required
string
Name of the organization
variablename
required
string
Name of the variable
Responses
Section titled “Responses”ActionVariable
Media typeapplication/json
ActionVariable return value of the query API
object
data
The value 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", "name": "example", "owner_id": 1, "repo_id": 1}APIError is error format response
Media typeapplication/json
APIError is an api error with a message
object
message
string
url
string
Examplegenerated
{ "message": "example", "url": "example"}APINotFound is a not found error response
Media typeapplication/json
object
errors
Array<string>
message
string
url
string
Examplegenerated
{ "errors": [ "example" ], "message": "example", "url": "example"}