Rest API for Sorting Instances on basis of Process Variable

Hi,

Is is possible to sort Process Instances based on a Process Variable using Rest API?
I have a process variable called “submittedDate”. I need to sort the Process Instances based on this field “submittedDate”. Need some help here.
Thanks :slight_smile: :slight_smile:
Shatabdi Dutta

1 Like

You can try to use this endpoint Get Tasks (Historic) (POST) | docs.camunda.org
There is processVariables in request, where you can specify your parameters:

"taskVariables": [
    {
        "name": "submittedDate",
        "value": "any-date",
        "operator": "gt" // *greater than "any-date"*
    }
]

Valid operator values are: eq - equal to; neq - not equal to; gt - greater than; gteq - greater than or equal to; lt - lower than; lteq - lower than or equal to; like .
For details, please, follow the link