SOAP API - getParameterValue

The table summarizes the SOAP API - getParameterValue.

Request Uses the getParameterValueInput element (from the ProcessManagement schema)
Parameter notes
Response Returns a getParameterValueOutput 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:getParameterValueInput>
         <proc:processID>pvm:0a127</proc:processID>
         <proc:parameterName>ContactPhone</proc:parameterName>
      </proc:getParameterValueInput>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <getParameterValueOutput xmlns="http://www.tibco.com/bx/2009/management/processManagerType">
         <parameterValue>509-555-1234</parameterValue>
      </getParameterValueOutput>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>