mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			497 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			497 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { API } from 'widget/helpers/axios';
 | 
						|
 | 
						|
const buildUrl = endPoint => `/api/v1/${endPoint}${window.location.search}`;
 | 
						|
 | 
						|
export default {
 | 
						|
  get() {
 | 
						|
    return API.get(buildUrl('widget/contact'));
 | 
						|
  },
 | 
						|
  update(identifier, userObject) {
 | 
						|
    return API.patch(buildUrl('widget/contact'), {
 | 
						|
      identifier,
 | 
						|
      ...userObject,
 | 
						|
    });
 | 
						|
  },
 | 
						|
  setCustomAttibutes(customAttributes = {}) {
 | 
						|
    return API.patch(buildUrl('widget/contact'), {
 | 
						|
      custom_attributes: customAttributes,
 | 
						|
    });
 | 
						|
  },
 | 
						|
};
 |