Skip to main content
All GET endpoints that return resource collections support sorting via URL parameter.
sorting
string
default:"null"
A comma-separated list of property paths, where each path is prefixed with + for ascending order or - for descending order.
# Returns all records sorted by the position of their states.
curl --request GET \
  --url '/records?sorting=+state.position'