Teams
Team management for group task assignment. Provides CRUD operations for creating, retrieving, updating, and deleting teams. Includes member management endpoints for adding and removing users from teams, and a 'my teams' endpoint for listing the current user's teams. Teams enable work to be assigned to a group rather than an individual, allowing team members to pick tasks from a shared queue.
-
GET List My TeamsReturns all teams the current user is a member of./tenants/{tenant}/teams/my
-
GET List TeamsLists all Teams for the given tenant./tenants/{tenant}/teams
-
POST Create TeamCreates a new Team for the specified tenant./tenants/{tenant}/teams
-
GET Get TeamGets a Team for the specified tenant./tenants/{tenant}/teams/{code}
-
PUT Update TeamUpdates a Team for the specified tenant./tenants/{tenant}/teams/{code}
-
DELETE Delete TeamDeletes a Team for the specified tenant./tenants/{tenant}/teams/{code}
-
GET List Team MembersReturns the members of a specific team./tenants/{tenant}/teams/{code}/members
-
POST Add Team MembersAdds one or more users to a team./tenants/{tenant}/teams/{code}/members
-
DELETE Remove Team MemberRemoves a user from a team./tenants/{tenant}/teams/{code}/members/{userCode}