newTeam
This method allows adding a new team. To insert each of these items, it is necessary to follow the standard documented below:
| Java class | |
|---|---|
| Request | web\wwwroot\ws\java\generic\NewTeamRequestType.java |
| Return | web\wwwroot\ws\java\generic\NewTeamResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| IDTEAM | X | Team ID #; |
| NMTEAM | X | Team name; |
| COMPONENT | X | String separated by "," with the codes of the components E.g.: ("109,107,73") |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:generic">
<soapenv:Header/>
<soapenv:Body>
<urn:newTeam>
<!--You may enter the following 3 items in any order-->
<urn:IDTEAM>?</urn:IDTEAM>
<urn:NMTEAM>?</urn:NMTEAM>
<urn:COMPONENT>?</urn:COMPONENT>
</urn:newTeam>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| SUCCESS | Status: SUCCESS Code: Code added by method Detail: Record added successfully RecordID: Record ID # of record added by the method. |
| FAILURE | Status: FAILURE Code: -1 Detail: In the event of a failure, a message returns with the error that occurred. |