List Operability Tokens

List Operability Tokens

List all issued valid operability access tokens

Request
URI
GET
https://{api_host}/admin/hybridity/api/authz/proxy/tokens/op/ssh
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 operability access tokens

Returns Array of opSshToken of type(s) application/json
[
    {
        "id": "string",
        "tcaCpUrl": "string",
        "vimId": "string",
        "expiresAt": "string",
        "createdAt": "string",
        "username": "string",
        "loginUsername": "string",
        "loginPassword": "string",
        "publicKey": "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