Data Sort doesn't work when used with searchCondition parameter in getRecords Method

Data Sort doesn't work when used with searchCondition parameter in getRecords Method

I am trying to get all the job listings in descending order with the status `In progress`.

Here's my Request 
https://recruit.zoho.com/recruit/private/json/JobOpenings/getRecords?authtoken=AUTH&scope=recruitapi&fromIndex=1&toIndex=200&sortColumnString=Date%20Posted&sortOrderString=desc&searchCondition=%28Job%20Opening%20Status%7C%3D%7CIn-progress%29

I am sending the get request on the above URL.

The problem here is `sortOrderString` is not working with `searchCondition`. When I remove the `searchCondition`, the data gets sorted in descending order.

So my Question is, How can I get the job listings in descending order with the status `In progress` ?