Get Roles By Filter

Get Roles By Filter

Query Rbac authorization roles

Request
URI
POST
https://{api_host}/admin/hybridity/api/authz/rbac/roles/query
COPY
Request Body

Filter object.

filter of type(s) application/json
Required
{
    "filter": {
        "id": [
            "string"
        ],
        "roleId": [
            "string"
        ]
    }
}
filter
Optional

filter

Authentication
This operation uses the following authentication methods.
Responses
200

Successfully retrived requested roles.

Returns roleList of type(s) application/json
{
    "items": [
        {
            "privileges": [
                "SYSTEM ADMIN",
                "SYSTEM ADMIN"
            ],
            "isDefault": false,
            "name": "name",
            "description": "description",
            "id": "id",
            "creationDate": "creationDate"
        },
        {
            "privileges": [
                "SYSTEM ADMIN",
                "SYSTEM ADMIN"
            ],
            "isDefault": false,
            "name": "name",
            "description": "description",
            "id": "id",
            "creationDate": "creationDate"
        }
    ]
}
array of role
items
Optional

items


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

404

Role not found

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