Skip to content
For AI agents: the complete documentation index is available at llms.txt; this page is also available as Markdown at index.md.

SectionIdentifier Sort Clause

The SectionIdentifier Sort Clause sorts search results by the Section IDs of the content items.

Arguments

  • (optional) sorting direction, either ascending (default) or descending

Note

This Sort Clause uses the descending sort direction by default.

Example

You can use this Sort Clause over the REST API, in the SortClauses element of the payload of the POST /views request:

1
2
3
4
5
<Query>
    <SortClauses>
        <SectionIdentifier>ascending</SectionIdentifier>
    </SortClauses>
</Query>
1
2
3
4
5
"Query": {
    "SortClauses": {
        "SectionIdentifier": "ascending"
    }
}