mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			432 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			432 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* global axios */
 | |
| import ApiClient from './ApiClient';
 | |
| 
 | |
| export class TeamsAPI extends ApiClient {
 | |
|   constructor() {
 | |
|     super('teams', { accountScoped: true });
 | |
|   }
 | |
| 
 | |
|   getAgents({ teamId }) {
 | |
|     return axios.get(`${this.url}/${teamId}/team_members`);
 | |
|   }
 | |
| 
 | |
|   addAgents({ teamId, agentsList }) {
 | |
|     return axios.post(`${this.url}/${teamId}/team_members`, {
 | |
|       user_ids: agentsList,
 | |
|     });
 | |
|   }
 | |
| }
 | |
| 
 | |
| export default new TeamsAPI();
 | 
