PrincipalSorter

PrincipalSorter
Principal Sorter

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

JSON Example
{
    "key": "UPDATED_AT",
    "operator": "DESC"
}
string
key
Required

Indicates the attribute of Oauth App Client to be used to sort

  • ID - Oauth App client Id
  • NAME - Oauth App client Name
  • DESCRIPTION - Oauth App description
  • UPDATED_AT - Oauth App last updated time
  • UPDATED_BY - Oauth App updated by user name
  • CLIENT_TYPE - Oauth App client type
Possible values are : ID, NAME, DESCRIPTION, UPDATED_AT, UPDATED_BY, CLIENT_TYPE,
string
operator
Required

The sorting direction.

  • ASC - Ascending order (A-Z, 0-9)
  • DESC - Descending order (Z-A, 9-0)
Possible values are : ASC, DESC,