# Sort by name ascendingcurl -X GET "https://cloud-api.pland.app/v2/users?sort=name:1" \ -H "Authorization: Bearer YOUR_API_TOKEN"# Sort by created date descendingcurl -X GET "https://cloud-api.pland.app/v2/users?sort=status.createdAt:-1" \ -H "Authorization: Bearer YOUR_API_TOKEN"
# Sort by name ascending, then by created date descendingcurl -X GET "https://cloud-api.pland.app/v2/users?sort=name:1,status.createdAt:-1" \ -H "Authorization: Bearer YOUR_API_TOKEN"