SOAP API - queryProcessInstancesAlt
The table summarizes the SOAP API - queryProcessInstancesAlt.
Request | Uses the queryProcessInstancesAltInput element (from the ProcessManagement schema) |
Parameter notes |
|
Response | Returns a queryProcessInstancesOutput element (from the ProcessManagement schema). |
Example | Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:proc="http://www.tibco.com/bx/2009/management/processManagerType"> <soapenv:Header/> <soapenv:Body> <proc:queryProcessInstancesAltInput> <proc:select>INSTANCE.NAME,INSTANCE.ID,Issue</proc:select> <proc:where>INSTANCE.STATUS = 'SUSPENDED'</proc:where> <proc:orderBy>INSTANCE.START_DATE</proc:orderBy> <proc:pageSize>10</proc:pageSize> <proc:attributeMap> <proc:templateAttribute> <proc:name>Issue</proc:name> <proc:type>string</proc:type> </proc:templateAttribute> </proc:attributeMap> </proc:queryProcessInstancesAltInput> </soapenv:Body> </soapenv:Envelope> |
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP-ENV:Header/> <SOAP-ENV:Body> <queryProcessInstancesOutput xmlns="http://www.tibco.com/bx/2009/management/processManagerType"> <processInstances> <processInstance> <processQName> <processName>InternalHelpDesk</processName> </processQName> <id>pvm:0a12u</id> <customAttributes> <customAttribute> <name>Issue</name> <value>Forgot password</value> </customAttribute> </customAttributes> </processInstance> </processInstances> <pagingID>-94865740</pagingID> </queryProcessInstancesOutput> </SOAP-ENV:Body> </SOAP-ENV:Envelope> |
Copyright © Cloud Software Group, Inc. All rights reserved.