cdd385b269
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
17 lines
434 B
JavaScript
17 lines
434 B
JavaScript
import { API } from 'widget/helpers/axios';
|
|
|
|
const buildUrl = endPoint => `/api/v1/${endPoint}${window.location.search}`;
|
|
|
|
export default {
|
|
update(identifier, userObject) {
|
|
return API.patch(buildUrl('widget/contact'), {
|
|
identifier,
|
|
...userObject,
|
|
});
|
|
},
|
|
setCustomAttibutes(customAttributes = {}) {
|
|
return API.patch(buildUrl('widget/contact'), {
|
|
custom_attributes: customAttributes,
|
|
});
|
|
},
|
|
};
|