TeamClient

interface TeamClient

An client wrapper of the Cisco Webex Teams REST API

Since

0.1

Functions

Link copied to clipboard
abstract fun create(teamName: String, handler: CompletionHandler<Team>)

Creates a team. The authenticated user is automatically added as a member of the team. See the Team Memberships API to learn how to add more people to the team.

Link copied to clipboard
abstract fun delete(teamId: String, handler: CompletionHandler<Void>)

Deletes the team on basis of the team id provided

Link copied to clipboard
abstract fun get(teamId: String, handler: CompletionHandler<Team>)

Retrieves the details for a team by id.

Link copied to clipboard
abstract fun list(maxTeams: Int, handler: CompletionHandler<List<Team>>)

Lists teams to which the authenticated user belongs.

Link copied to clipboard
abstract fun update(    teamId: String,     newName: String,     handler: CompletionHandler<Team>)

Updates the details for a team by id.