Previous Topic: QueryModuleConfigsNext Topic: UpdateModuleConfigProperties


QueryModuleConfigProperties

To query for the module properties, use the QueryModuleConfigProperties function.

For example, send an HTTP POST request to:

http://<hostname>:7000/node/rest/CA:00074_CA:00074:01/_ops/QueryModuleConfigProperties

Include a request header:

Content-Type=application/xml

For example:

<QueryModuleConfigPropertiesRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                      xsi:type="p1:QueryModuleConfigPropertiesRequest"
                      xmlns:p1="http://ns.ca.com/2011/09/pam-ops" >
  <ModuleName>WorkflowServices</ModuleName>           
</QueryModuleConfigPropertiesRequest>

The response contains the module properties:

<?xml version="1.0" encoding="UTF-8"?>
<pam-ops:QueryModuleConfigPropertiesResponse 
           xmlns:pam-ops="http://ns.ca.com/2011/09/pam-ops"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:type="pam-ops:QueryModuleConfigPropertiesResponse">
  <ModuleName>WorkflowServices</ModuleName>
  <Property>
    <Name>TimeToKeepPrompts</Name>
    <Value>5</Value>
    <Label>Time to keep completed user interactions (mins)</Label>
    <Description>This parameter determines the maximum time in minutes that a particular prompt information remains accessible to the user once the prompt has ended.</Description>
    <Page>Default Process Control Properties</Page>
    <Type>Long</Type>
  </Property>
</pam-ops:QueryModuleConfigPropertiesResponse>