mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			504 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			504 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* global axios */
 | 
						|
import ApiClient from './ApiClient';
 | 
						|
 | 
						|
class CSATReportsAPI extends ApiClient {
 | 
						|
  constructor() {
 | 
						|
    super('csat_survey_responses', { accountScoped: true });
 | 
						|
  }
 | 
						|
 | 
						|
  get({ page, from, to } = {}) {
 | 
						|
    return axios.get(this.url, {
 | 
						|
      params: { page, since: from, until: to, sort: '-created_at' },
 | 
						|
    });
 | 
						|
  }
 | 
						|
 | 
						|
  getMetrics({ from, to } = {}) {
 | 
						|
    return axios.get(`${this.url}/metrics`, {
 | 
						|
      params: { since: from, until: to },
 | 
						|
    });
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
export default new CSATReportsAPI();
 |