SOAP API - setOrgEntityConfigAttributes

The table summarizes the SOAP API - setOrgEntityConfigAttributes.

Request Uses the setOrgEntityConfigAttributes element (from the OrganisationalEntityConfigService schema)
Parameter notes
  • resource: the GUID of the resource whose configuration attributes are being set. A resource’s GUID can be obtained from a previous lookupUser operation.
  • orgEntityConfigAttributeSet: contains an attributeName and an attributeValue for each configuration attribute being set.
Response Returns a setOrgEntityConfigAttributesResponse 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:setOrgEntityConfigAttributes resource="931F96FA-EC57-43B5-AA61-613784B1BD10">

         <orgEntityConfigAttributeSet>

            <attributeName>WorkItemAutoOpen</attributeName>

            <attributeValue>true</attributeValue>

         </orgEntityConfigAttributeSet>

      </api:setOrgEntityConfigAttributes>

   </soapenv:Body>

</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">

   <SOAP-ENV:Header/>

   <SOAP-ENV:Body>

      <setOrgEntityConfigAttributesResponse xmlns="http://api.brm.n2.tibco.com">

         <success xmlns="">true</success>

      </setOrgEntityConfigAttributesResponse>

   </SOAP-ENV:Body>

</SOAP-ENV:Envelope>