SOAP API - listSetofProcessInstanceAttributes

The table summarizes the SOAP API - listSetofProcessInstanceAttributes.

Request Uses the listSetofProcessInstanceAttributesInput element (from the ProcessManagement schema)
Parameter notes qualifiedProcessNames: Consists of one or more qualifiedProcessName elements, which can be obtained from listProcessTemplates , queryProcessTemplates , and queryProcessTemplatesAlt .
Response Returns a instanceAttributes 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:listSetofProcessInstanceAttributesInput>
         <proc:qualifiedProcessNames>
            <!--1 or more repetitions:-->
            <proc:qualifiedProcessName>
               <proc:moduleName>/HelpDesk/Process Packages/HelpDesk.xpdl</proc:moduleName>
               <proc:processName>InternalHelpDesk</proc:processName>
               <proc:version>1.0.0.201105061158</proc:version>
            </proc:qualifiedProcessName>
            <proc:qualifiedProcessName>
               <proc:moduleName>/SalesCallback/Process Packages/SalesCallback.xpdl</proc:moduleName>
               <proc:processName>SalesCallbackProcess</proc:processName>
               <proc:version>1.0.0.201105061158</proc:version>
            </proc:qualifiedProcessName>
          </proc:qualifiedProcessNames>
         <proc:attributeType>DISPLAYABLE</proc:attributeType>
      </proc:listSetofProcessInstanceAttributesInput>
   </soapenv:Body>
</soapenv:Envelope>
  Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <instanceAttributes xmlns="http://www.tibco.com/bx/2009/management/processManagerType">
         <instanceAttribute>
            <name>INSTANCE.PRIORITY</name>
            <type>short</type>
            <processQName>
               <moduleName/>
               <processName/>
               <version/>
            </processQName>
            <viewtype>123</viewtype>
         </instanceAttribute>
         <instanceAttribute>
            <name>ContactName</name>
            <type>string</type>
            <processQName>
               <moduleName>/SalesCallback/Process Packages/SalesCallback.xpdl</moduleName>
               <processName>SalesCallbackProcess</processName>
               <version>1.0.0.201105061158</version>
            </processQName>
            <viewtype>123</viewtype>
         </instanceAttribute>
                    .
                    .
                    .
          <instanceAttribute>
            <name>MODULE.NAME</name>
            <type>string</type>
            <processQName>
               <moduleName/>
               <processName/>
               <version/>
            </processQName>
            <viewtype>123</viewtype>
         </instanceAttribute>
      </instanceAttributes>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>