Sorting lists

When getting a list of resources (for example GET /company/quotes), you can sort the results by setting the query string parameter sort. This parameter must be set as a JSON where keys are the properties to sort on, and the value is 1 to sort incresing, or -1 to sort decreasing. It is possible to set multiple sorts in the same query, for example :

sort={"creationDate":1,"code":-1}