getModuleId

Gets the record ID for the module.

Parameters

moduleName is the name of the requested module.

Returns

The recordId for the module is returned.

Errors

java.lang.Exception
A system error occurred when the request was being processed.
ModuleDoesNotExistException
The module does not exist.
AccessException
The user does not have access to the module.

Sample request

<soapenv:Envelope 
	xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 	xmlns:ws="http://ws.tririga.com">
   <soapenv:Body>
      <ws:getModuleId>
         <ws:moduleName>triPeople</ws:moduleName>
      </ws:getModuleId>
   </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>
      <getModuleIdResponse xmlns="http://ws.tririga.com">
         <out>7</out>
      </getModuleIdResponse>
   </soap:Body>
</soap:Envelope>