Me

"Me" returns the authenticated user's permissions within the system. It provides a comprehensive view of access rules (roles, subjects and scope) assigned to the current user. For more information see Access control.

List the access rules assigned to the requesting user.

Retrieve the access rules assigned to the requesting user.

SecuritybearerAuth
Request
query Parameters
limit
integer <int32> [ 1 .. 500 ]
Default: 50

The maximum number of entries to return.

offset
integer <int32>

The offset of the first item returned in the collection.

Example: offset=100
search
string

Filter results by a free text search.

Example: search=test project
Responses
200

Executed successfully.

400

Bad request.

500

unexpected error

503

unexpected error

get/api/v1/authorization/me/access-rules
Response samples
application/json
{
  • "accessRules": {
    }
}

Count the access rules assigned to the requesting user.

Use to retrieve the number of access rules assigned to the requesting user.

SecuritybearerAuth
Request
query Parameters
search
string

Filter results by a free text search.

Example: search=test project
Responses
200

Executed successfully.

400

Bad request.

500

unexpected error

503

unexpected error

get/api/v1/authorization/me/access-rules/count
Response samples
application/json
{
  • "count": 1
}