Request
PUT https://{hostname}:{port}
/cli/team/create?{parameters}
Accept: {contentType}
Table 1. Request parameters
Parameter |
Type |
Required |
Description |
team |
string |
true |
Name of the team |
description |
string |
false |
Description of the team |
Example
curl -k -u jsmith:passwd
"https://deployserver.example.com:8443/cli/team/create
?team=MyNewTeam&description=MyNewTeamDescription" -X PUT -H "Accept: application/json"
Example response
{
"id": "769c2486-ed40-4a3a-ac52-faa33d30cfd5",
"name": "MyNewTeam",
"description": "MyNewTeamDescription",
"isDeletable": true
}