Get the user-level list of variables which is created by current doer
GET
/user/actions/variables
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “ Query Parameters ” page
integer
Page number of results to return (1-based)
limit
integer
Page size of results
Responses
Section titled “ Responses ”VariableList
Media type application/json
Array<object>
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
Example generated
[ { "data": "example", "name": "example", "owner_id": 1, "repo_id": 1 }]Headers
Section titled “ Headers ” X-Total-Count
integer format: int64
The total number of variables
APIError is error format response
Media type application/json
APIError is an api error with a message
object
message
string
url
string
Example generated
{ "message": "example", "url": "example"}APIUnauthorizedError is a unauthorized error response
Media type application/json
object
message
string
url
string
Example generated
{ "message": "example", "url": "example"}APIForbiddenError is a forbidden error response
Media type application/json
object
message
string
url
string
Example generated
{ "message": "example", "url": "example"}APINotFound is a not found error response
Media type application/json
object
errors
Array<string>
message
string
url
string
Example generated
{ "errors": [ "example" ], "message": "example", "url": "example"}