Skip to content

listGlobalVariables

GET
/api/v1/variables
curl --request GET \
--url https://example.com/api/v1/variables

OK

Media typeapplication/json
object
items
required
Array<object>
object
inherited
required

True when a parent namespace or the global scope defines the variable.

boolean
key
required
string
scope
required

Global or the namespace name that defines the variable.

string
updated_at
required
string format: date-time
updated_by
required
string
value
required
string
key
additional properties
any
key
additional properties
any
Examplegenerated
{
"items": [
{
"inherited": true,
"key": "example",
"scope": "example",
"updated_at": "2026-04-15T12:00:00Z",
"updated_by": "example",
"value": "example"
}
]
}

Error

Media typeapplication/json
object
error
required
object
code
required
string
details
message
required
string
key
additional properties
any
key
additional properties
any
Examplegenerated
{
"error": {
"code": "example",
"details": "example",
"message": "example"
}
}