List Roles

get

/process/api/v1/data-access/roles

List all the roles in a paginated format.

Request

Query Parameters
  • The numbers of items to return. If parameter is omitted, the default value 25 is set.
    Examples

  • The number of items to skip before starting to collect the result set.
    Examples

  • This query parameter specifies the order by clause. The value must follow the format of fieldName[:(asc/desc)][,fieldName[:(asc/desc)]]*.
    Examples

  • This query parameter specifies the filter used to restrict which role object should be returned in a PageableResponse. It defines a filter based on SCIM filtering notation. The filter supports the following fields in expressions: name, description, scopeType, scopeName and createdOn (given in ISO 8601 format). The filter supports expression operators: eq,ne,co,sw,ew,pr,gt,ge,lt,le. It also supports logical operators OR and AND. Boolean expressions may be grouped using parentheses to change the standard order of operations; i.e., evaluate OR logical operators before logical AND operators. For example, ?q=(name sw "Role" or (scopeName eq "Application1" and description co "Process" )).
    Examples

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : PageableRoleResponse
Type: object
Title: PageableRoleResponse
Defines PageableRoleResponse
Show Source
Nested Schema : items
Type: array
Title: items
Show Source
Nested Schema : Role
Type: object
Title: Role
Defines Role
Show Source

400 Response

Bad request
Body ()
Root Schema : ErrorMessage
Type: object
Title: ErrorMessage
Defines ErrorMessage
Show Source
Examples

401 Response

Unauthorized
Body ()
Root Schema : ErrorMessage
Type: object
Title: ErrorMessage
Defines ErrorMessage
Show Source

429 Response

Too many requests

500 Response

Internal server error
Body ()
Root Schema : ErrorMessage
Type: object
Title: ErrorMessage
Defines ErrorMessage
Show Source

503 Response

Too many exceptions or too slow requests
Back to Top