Review Sort Order
Set default sort order for review rows.
Configure the default order in which review rows are displayed. Note: Users can later sort the rows as they prefer.
The order is specified using a SCIM "order by" expression. The default value is source.type asc
.
Valid Values
Valid values include:
source.ATTR
destination.ATTR
waypoint.ATTR
idp.ATTR
Where ATTR
is an attribute name such as "id" or "name".
Example
{
"value": {
"order_by": "destination.name desc"
}
}
Get Review Sort Order
Authorizations
Header parameters
AcceptstringOptionalExample:
application/json
Responses
200
OK
application/json
Responseobject
get
GET /api/private/workflows/access/global_settings/view_sort_settings HTTP/1.1
Host: {{baseurl}}
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
{
"value": {
"order_by": "source.type asc"
}
}
Set Review Sort Order
Authorizations
Header parameters
Content-TypestringOptionalExample:
application/json
AcceptstringOptionalExample:
application/json
Body
objectOptionalExample:
{"value":{"order_by":"<string>"}}
Responses
200
OK
application/json
Responseobject
put
PUT /api/private/workflows/access/global_settings/view_sort_settings HTTP/1.1
Host: {{baseurl}}
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"value": {
"order_by": "<string>"
}
}
200
OK
{
"value": {
"order_by": "source.type asc"
}
}
Last updated
Was this helpful?