20 lines
497 B
JavaScript
20 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,
|
|
});
|
|
},
|
|
};
|