SOAP API - listMigrationRules

The table summarizes the SOAP API - listMigrationRules.

Request Uses the qualifiedProcessName element (from the ProcessManagement schema)
Parameter notes moduleName, processName, and version can be obtained from listProcessTemplates , queryProcessTemplates , and queryProcessTemplatesAlt .
Response Returns a migrationRuleList 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: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>
   </soapenv:Body>
</soapenv:Envelope>
Response:
The response when migration rules are not set:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <migrationRuleList xmlns="http://www.tibco.com/bx/2009/management/processManagerType"/>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
The response when migration rules are set:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <migrationRuleList xmlns="http://www.tibco.com/bx/2009/management/processManagerType">
         <module name="/HelpDesk/Process Packages/HelpDesk.xpdl" version="1.0.0.201105061158">
            <process name="InternalHelpDesk">
               <migrate creationTime="2011-07-14T09:38:50.773-07:00" description="Added history check" fromTask="EnterIssue" toVersion="1.0.0.201107140929"/>
            </process>
         </module>
      </migrationRuleList>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>