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