createTeamByPosition
This method allows adding:
- Team with determined positions already added to the system. To insert each of these items, it is necessary to follow the standard documented below.
| Java class | |
|---|---|
| Request | web\wwwroot\ws\java\generic\CreateTeamByPositionRequestType.java |
| Return | web\wwwroot\ws\java\generic\CreateTeamByPositionResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| IDTEAM | X | Team ID # |
| NMTEAM | X | Team name |
| POSITIONS | X | ID #s of the positions that will be associated with the team. Example: (“Position1,Position2,Position3”) |
| COMPONENT | X | Code of the components to which this team will be associated. Example: ("107,109,73") |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:generic">
<soapenv:Header/>
<soapenv:Body>
<urn:createTeamByPosition>
<!--You may enter the following 4 items in any order-->
<urn:IDTEAM>?</urn:IDTEAM>
<urn:NMTEAM>?</urn:NMTEAM>
<urn:POSITIONS>?</urn:POSITIONS>
<urn:COMPONENT>?</urn:COMPONENT>
</urn:createTeamByPosition>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| return | SUCCESS: 1. FAILURE: Returns a message regarding the error that occurred |