editTeamByUser
This method allows editing:
- Team with determined users already added to the system. To edit each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\generic\EditTeamByUserRequestType.java |
Return | web\wwwroot\ws\java\generic\EditTeamByUserResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDTEAM_OLD | X | ID # of the team you wish to edit |
IDTEAM_NEW | X | New ID # of the team, if you wish to edit it. If you do not wish to edit it, enter the same as the IDTEAM_OLD |
NMTEAM | X | Team name |
USERS | X | Identifiers of the users that will be associated with the team. Example: (“User1,User2,User3”) |
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:editTeamByUser>
<!--You may enter the following 5 items in any order-->
<urn:IDTEAM_OLD>?</urn:IDTEAM_OLD>
<urn:IDTEAM_NEW>?</urn:IDTEAM_NEW>
<urn:NMTEAM>?</urn:NMTEAM>
<urn:USERS>?</urn:USERS>
<urn:COMPONENT>?</urn:COMPONENT>
</urn:editTeamByUser>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: 1. FAILURE: Returns a message regarding the error that occurred |