getProjectId
Gets the record ID of a project.
Parameters
projectName is the name of the project for which you need the record ID.
Returns
The record ID for the project is returned.
Errors
- InvalidArgumentException
- The project name is 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:getProjectId>
<ws:projectName>1000448 - TestProject</ws:projectName>
</ws:getProjectId>
</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>
<getProjectIdResponse xmlns="http://ws.tririga.com">
<out>2530175</out>
</getProjectIdResponse>
</soap:Body>
</soap:Envelope>