SOAP API - listProcessTemplateAttributes

The table summarizes the SOAP API - listProcessTemplateAttributes.

Request Uses the listProcessTemplateAttributesInput element (from the ProcessManagement schema)
Parameter notes attributeType: FILTERABLE, SORTABLE, or DISPLAYABLE; or leave empty for all attribute types.
Response Returns a templateAttributes 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:listProcessTemplateAttributesInput>
         <proc:attributeType>FILTERABLE</proc:attributeType>
      </proc:listProcessTemplateAttributesInput>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <templateAttributes xmlns="http://www.tibco.com/bx/2009/management/processManagerType">
         <templateAttribute>
            <name>DEFINITION.PRIORITY</name>
            <type>short</type>
         </templateAttribute>
         <templateAttribute>
            <name>DEFINITION.DESCRIPTION</name>
            <type>string</type>
         </templateAttribute>
         <templateAttribute>
            <name>DEFINITION.VERSION</name>
            <type>string</type>
         </templateAttribute>
         <templateAttribute>
            <name>DEFINITION.NAME</name>
            <type>string</type>
         </templateAttribute>
         <templateAttribute>
            <name>MODULE.NAME</name>
            <type>string</type>
         </templateAttribute>
         <templateAttribute>
            <name>DEFINITION.CREATION_DATE</name>
            <type>dateTime</type>
         </templateAttribute>
      </templateAttributes>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>