Could you update this?
Seems outdated
Queries can accept a
sortparameter that allows sorting on one or multiple fields with the following syntaxes:
GET /api/:pluralApiId?sort=valueto sort on 1 fieldGET /api/:pluralApiId?sort[0]=value1&sort[1]=value2to sort on multiple fields (e.g. on 2 fields)The sorting order can be defined with:
:ascfor ascending order (default order, can be omitted)- or
:descfor descending order.