Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Page Properties
hiddentrue
idDONE

Product Version
Report Note
Assignee

Resources & Remarks

Modification History

NameDateProduct VersionAction
Antje02 MAR 20232023 SpringPage created.


...

As of Version

product version 2023 Spring

Request MethodGET
Response FormatJSON
Description


Excerpt

This Request retrieves all roles matching the search string. (Technical roles are filtered out)


>> Specify technical roles.

The conditions are specified via the following optional query parameters:

ParameterTypeDescription
searchstringA String contained in role name or description

Response HTTP status codes:

HTTP Status CodeMeaning
200 OKSuccessful.
401 UnauthorizedNot successful.


Request Example

https://<host>/api-web/api/idm/roles?search=test

no request body

Response Example

200 OK

Code Block
languageyml
[
  {
    "name": "TEST_ROLE",
    "description": "Example role"
  },
  {
    "name": "EXAMPLE_ROLE",
    "description": "Role containing word test in its description"
  }
] 


...