orderBy specifies the name of one or more comma separated properties. For each property you can optionally specify the order direction. Both of the following requests retrieve all site entities ordered by ascending name:
GET ...alfresco/versions/1/sites?orderBy=name GET ...alfresco/versions/1/sites?orderBy=name%20ASC
The following request will return all site entities ordered by their createdAt property in descending order and then by their name property in ascending order:
GET ...alfresco/versions/1/sites?orderBy=createdAt%20DESC,name
If the entity type does not support ordering or if any of the specified properties do not exist or cannot be used for sorting purposes then a 400 HTTP status code is returned. An error object is returned that states why the requested sort cannot be performed.