Options
All
  • Public
  • Public/Protected
  • All
Menu

Class to perform get agents by team id

Hierarchy

  • TeamService

Index

Constructors

  • Create instance of CXoneAuth

    @example
    const TeamService = new TeamService();

    Returns TeamService

Properties

auth: CXoneAuth
logger: Logger = ...
utilService: HttpUtilService = ...
validationUtils: ValidationUtils = ...

Methods

  • Used to get the agent list details based on the team id

    example
    this.TeamService.getTeamById("123456");
    

    Parameters

    Returns Promise<Team | CXoneSdkError>

  • Used to get team details based on team id

    example
    this.TeamService.getTeamDetailsById("123456");
    

    Parameters

    • Optional teamId: string

      team id to fetch details

    Returns Promise<Team | CXoneSdkError>

  • searchAgents(team: Team, searchText: string, offset: number, limit: number): Team
  • Used to get the agent list details based on the team id

    example
    
    

    Parameters

    • team: Team
    • searchText: string
    • offset: number
    • limit: number

    Returns Team

Generated using TypeDoc