REST API - queryProcessInstancesAlt
The table summarizes the REST API - queryProcessInstancesAlt.
Request
Format |
GET <baseurl>/process/query/instancealt/<select>/<where>/<orderby>/<pagesize> |
Path parameters |
|
Query parameters |
|
Response
JSON | Returns a JSON representation of the content of the queryProcessInstancesOutput element. |
XML | Returns the content of the queryProcessInstancesOutput element (from the ProcessManagement schema). |
Example
Request |
get <baseurl>/process/query/instancealt/ContactName/INSTANCE.PRIORITY%20%3E%201/INSTANCE.START_DATE/0?statusmode=ACTIVE |
Response |
{ "xml-fragment": { "processInstances": { "processInstance": [ { "customAttributes": { "customAttribute": { "name": "ContactName", "value": "Billy Smith" } } }, { "customAttributes": { "customAttribute": { "name": "ContactName", "value": "Nancy Marshall" } } }, ] }, "pagingID": 0 } } |