SOAP API - listProcessInstanceAttributes

The table summarizes the SOAP API - listProcessInstanceAttributes.

Request Uses the listProcessInstanceAttributesInput element (from the ProcessManagement schema)
Parameter notes processQName: 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:listProcessInstanceAttributesInput>

         <proc:processQName>

            <proc:moduleName>/WelcomeUsersDesignSolution/Process Packages/ProcessPackage.xpdl</proc:moduleName>

            <proc:processName>WelcomeUsers</proc:processName>

            <proc:version>1.0.0.201106290831</proc:version>

         </proc:processQName>

         <proc:attributeType>FILTERABLE</proc:attributeType>

      </proc:listProcessInstanceAttributesInput>

   </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.WAITING_WORK_COUNT</name>

            <type>integer</type>

            <processQName>

               <moduleName/>

               <processName/>

               <version/>

            </processQName>

            <viewtype>123</viewtype>

         </instanceAttribute>

         <instanceAttribute>

            <name>INSTANCE.VERSION</name>

            <type>string</type>

            <processQName>

               <moduleName/>

               <processName/>

               <version/>

            </processQName>

            <viewtype>123</viewtype>

         </instanceAttribute>

                  .

                  .

                  .

      </instanceAttributes>

   </SOAP-ENV:Body>

</SOAP-ENV:Envelope>