List Kubernetes Rest Tokens For Vim

List Kubernetes Rest Tokens For Vim

List all issued valid Kubernetes REST API access tokens for VIM access

Request
URI
GET
https://{api_host}/admin/hybridity/api/authz/proxy/tokens/vim/rest
COPY
Query Parameters
integer
pageNumber
Optional

The number of the page starting from zero

integer
pageSize
Optional

The size of the page (defaults to 10)

string
sort
Optional

The sorting order. The format of the param is ,<asc/dsc>. Defaults to createdAt,dsc

string
filter
Optional

The filter for listing

Header Parameters
boolean
x-tca-anymatch
Optional

If false, then the filter expressions are taken in logical AND relation, otherwise OR


Responses
200

List of valid Kubernetes REST API access tokens for VIM access

Returns Array of vimRestToken of type(s) application/json
[
    {
        "id": "string",
        "vimId": "string",
        "vimName": "string",
        "purpose": "string",
        "expiresAt": "string",
        "createdAt": "string",
        "username": "string",
        "token": "string",
        "used": false
    }
]

400

Bad Request

Returns errorResponse of type(s) application/json
{
    "errors": [
        {
            "code": "string",
            "message": "string"
        }
    ]
}
array of error
errors
Optional

errors


401

Unauthorized

Operation doesn't return any data structure

403

Forbidden

Operation doesn't return any data structure

500

Internal Server Error

Returns errorResponse of type(s) application/json
{
    "errors": [
        {
            "code": "string",
            "message": "string"
        }
    ]
}
array of error
errors
Optional

errors