A team is a group of users. Users can be in multiple teams simultaneously.
The REST API provides support for a number of operations:
Creates a new team with specified parameters or updates an existing one.
/api/v1/org/${orgName}/team
POST
Authorization
, Content-Type: application/json
All parameters except name
are optional.
Updates parameters of an existing team.
/api/v1/org/${orgName}/team
POST
Authorization
, Content-Type: application/json
All parameters are optional.
Omitted parameters are not updated.
Team id
is mandatory, in case of updating team name
.
Lists all existing teams.
/api/v1/org/${orgName}/team
GET
Authorization
Returns a list of users associated with the specified team.
/api/v1/org/${orgName}/team/${teamName}/users
GET
Authorization
Adds a list of users to the specified team.
/api/v1/org/${orgName}/team/${teamName}/users
PUT
Authorization
, Content-Type: application/json
Adds a list of LDAP groups to the specified team.
/api/v1/org/${orgName}/team/${teamName}/ldapGroups
PUT
Authorization
, Content-Type: application/json
Removes a list of users from the specified team.
/api/v1/org/${orgName}/team/${teamName}/users
DELETE
Authorization
, Content-Type: application/json