SOAP API - getOrgEntityConfigAttributesAvailable

The table summarizes the SOAP API - getOrgEntityConfigAttributesAvailable.

Request Uses the getOrgEntityConfigAttributesAvailable element (from the OrganisationalEntityConfigService schema)
Parameter notes
  • startAt: the position in the list of available configuration attributes from which to start the page of results.
  • numToReturn: the number of configuration attributes to include in the response.
Response Returns a getOrgEntityConfigAttributesAvailableResponse element (from the OrganisationalEntityConfigService schema)
Example Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.brm.n2.tibco.com">
   <soapenv:Header/>
   <soapenv:Body>
      <api:getOrgEntityConfigAttributesAvailable>
         <startAt>0</startAt>
         <numToReturn>10</numToReturn>
      </api:getOrgEntityConfigAttributesAvailable>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <getOrgEntityConfigAttributesAvailableResponse xmlns="http://api.brm.n2.tibco.com">
         <orgEntityConfigAttributesAvailable xmlns="">
            <attributeName>MaxOpenWorkItemCount</attributeName>
            <readOnly>false</readOnly>
         </orgEntityConfigAttributesAvailable>
         <orgEntityConfigAttributesAvailable xmlns="">
            <attributeName>WorkItemFilterCriteriaAPI</attributeName>
            <readOnly>true</readOnly>
         </orgEntityConfigAttributesAvailable>
         <orgEntityConfigAttributesAvailable xmlns="">
            <attributeName>WorkItemOrderCriteriaAPI</attributeName>
            <readOnly>true</readOnly>
         </orgEntityConfigAttributesAvailable>
         <orgEntityConfigAttributesAvailable xmlns="">
            <attributeName>WorkItemOrderCriteriaPARSED</attributeName>
            <readOnly>true</readOnly>
         </orgEntityConfigAttributesAvailable>
         <orgEntityConfigAttributesAvailable xmlns="">
            <attributeName>WorkItemOrderCriteriaHQLPARSED
            </attributeName>
            <readOnly>true</readOnly>
         </orgEntityConfigAttributesAvailable>
         <orgEntityConfigAttributesAvailable xmlns="">
            <attributeName>WorkItemAutoOpen</attributeName>
            <readOnly>false</readOnly>
         </orgEntityConfigAttributesAvailable>
      </getOrgEntityConfigAttributesAvailableResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>