Queries a fine sort expression that is configured for a version of an OpenSearch application.
Debugging
Request headers
This operation uses only common request headers. For more information, see Common request parameters.
Request syntax
GET /v4/openapi/app-groups/[appGroupIdentity]/apps/[appId]/second-ranks/[name] HTTP/1.1
Request parameters
Parameter | Type | Position | Required | Example | Description |
---|---|---|---|---|---|
appGroupIdentity | String | Path | Yes | my_app_group_name |
The name of the application. |
appId | Integer | Path | Yes | 110157886 |
The ID of the version. |
name | String | Path | Yes | test |
The name of the fine sort expression. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
requestId | String | 0A6EB64B-B4C8-CF02-810F-E660812972FF |
The ID of the request. |
result | Struct |
The information about the fine sort expression. |
|
active | Boolean | true |
Indicates whether the expression is the default one. |
created | Integer | 1587052801 |
The time when the expression was created. |
description | String | - |
The description of the expression. |
id | String | 89047 |
The ID of the expression. This parameter appears only in the response. |
isDefault | String | true |
Indicates whether the expression is the default one. This parameter appears only in the response. Valid values:
|
isSys | String | false |
Indicates whether the expression is a system expression. This parameter appears only in the response. Valid values:
|
meta | String | random()+now() |
The content of the fine sort expression. You can define an expression that consists of fields, feature functions, and mathematical functions to implement complex sort logic. |
name | String | tests |
The name of the expression. |
updated | Integer | 1587052801 |
The time when the expression was last updated. |
Examples
Sample requests
GET /v4/openapi/app-groups/os_function_test_v1/apps/150024378/second-ranks/tests
Sample success responses
XML
format
<requestId>0A6EB64B-B4C8-CF02-810F-E660812972FF</requestId>
<result>
<id>89047</id>
<name>tests</name>
<meta>random()+now()</meta>
<active>true</active>
<description/>
<created>1587052801</created>
<updated>1587052801</updated>
<isDefault>true</isDefault>
<isSys>false</isSys>
</result>
JSON
format
{
"requestId": "0A6EB64B-B4C8-CF02-810F-E660812972FF",
"result": {
"id": 89047,
"name": "tests",
"meta": "random()+now()",
"active": true,
"description": "",
"created": 1587052801,
"updated": 1587052801,
"isDefault": true,
"isSys": false
}
}
Error codes
For a list of error codes, visit the API Error Center.