removePositionFromTeam
This method allows removing positions from a team. To delete each of these items, the standard documented below must be followed.
| Java class | |
|---|---|
| Request | web\wwwroot\ws\java\generic\RemovePositionFromTeamRequestType.java |
| Return | web\wwwroot\ws\java\generic\RemovePositionFromTeamResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| IDTEAM | X | Team ID #; |
| POSITIONS | X | String separated by "," containing the position ID #s. E.g.: ("Position1,Position2") |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:generic">
<soapenv:Header/>
<soapenv:Body>
<urn:removePositionFromTeam>
<!--You may enter the following 2 items in any order-->
<urn:IDTEAM>?</urn:IDTEAM>
<urn:POSITIONS>?</urn:POSITIONS>
</urn:removePositionFromTeam>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| return | SUCCESS: 1. FAILURE: Returns a message regarding the error that occurred |