getObjectTypeListByModuleName

Gets all of the definitions for a specific module..

Parameters

moduleName
The name of the module.
isStandAlone
Shows an object type list with stand alone objects.

Returns

An array of BaseObjectType objects is returned, each of which contains the name and ID of an object type.

Errors

ModuleDoesNotExistException
The module name does not exist.
InvalidArgumentException
At least one of the arguments that are passed in are invalid.
java.lang.Exception
A system error occurred when the request was being processed.

Sample request

<soapenv:Envelope 
	xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 	xmlns:ws="http://ws.tririga.com">
   <soapenv:Body>
      <ws:getObjectTypeListByModuleName>
         <ws:moduleName>triPeople</ws:moduleName>
         <ws:isStandAlone>true</ws:isStandAlone>
      </ws:getObjectTypeListByModuleName>
   </soapenv:Body>
</soapenv:Envelope>

Sample response

<soap:Envelope 
	xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <soap:Body>
      <getObjectTypeListByModuleIdResponse xmlns="http://ws.tririga.com">
         <out>
            <ns1:BaseObjectType xmlns:ns1="http://dto.ws.tririga.com">
               <childBaseObjectTypes xsi:nil="true" xmlns="http://dto.ws.tririga.com"/>
               <id xmlns="http://dto.ws.tririga.com">106402</id>
               <name xmlns="http://dto.ws.tririga.com">triPeople</name>
            </ns1:BaseObjectType>
         </out>
      </getObjectTypeListByModuleIdResponse>
   </soap:Body>
</soap:Envelope>