PrincipalSearchRequest

PrincipalSearchRequest
Principal Search Request

Request model json to search Oauth apps.

JSON Example
{
    "filters": [
        {
            "key": "TYPE",
            "operator": "EQUALS",
            "value": "OAUTH_CLIENT"
        },
        {
            "key": "CLIENT_TYPE",
            "operator": "EQUALS",
            "value": "GENERAL"
        },
        {
            "key": "FREE_TEXT",
            "operator": "LIKE",
            "value": "CLM Oauth App"
        },
        {
            "key": "ROLE_NAME",
            "operator": "IN",
            "value": [
                "Tenant Admin",
                "License Manager"
            ]
        }
    ],
    "sorter": {
        "key": "UPDATED_AT",
        "operator": "DESC"
    }
}
filters
Optional

filters

sorter
Optional

Defines the ordering criteria for the result set. Specifies the target property and the direction (ascending or descending) to arrange the returned records.

Parameter To