1 Reply Latest reply on Jun 16, 2015 2:26 PM by clp207

    Query tasks by process id using remote API?

    clp207

      How can I use the REST API to query tasks by potential owner for a specific process id?

        • 1. Re: Query tasks by process id using remote API?
          clp207

          I was able to get this working by using the command GetTaskAssignedAsPotentialOwnerCommand and adding a query filter with the remote API.

           

                    QueryFilter qf = new QueryFilter();

                    qf.setFilterParams("processId = 'my_process_id'");       

                    taskCmd.setFilter(qf);