- URL:
- https://<root>/security/roles/search
- Methods:
POST
- Required Capability:
- Access allowed with any authorized privilege
- Version Introduced:
- 10.1
Description
The search
operation searches for a specific role, or a group of roles, from the role store. The size of the search results can be controlled with the max
parameter.
Request parameters
Parameter | Description |
---|---|
| A filter string to search the roles. Example
|
| The maximum size of the result size. Example
|
| The response format. The default response format is Values: |
Example usage
The following is a sample POST request for the search
operation that seeks to return roles that begin with the name 'editors':
POST /webadaptor/admin/security/roles/search HTTP/1.1
Host: machine.domain.com
Content-Type: application/x-www-form-urlencoded
Content-Length: []
filter=editors&maxCount=20&f=json
JSON Response example
{
"roles": [editors],
"hasMore": false
}