cb22b396eb
Add SDK functions Co-authored-by: Sojan <sojan@pepalo.com>
11 lines
286 B
JavaScript
Executable file
11 lines
286 B
JavaScript
Executable file
import authEndPoint from 'widget/api/endPoints';
|
|
import { API } from 'widget/helpers/axios';
|
|
|
|
export default {
|
|
update: ({ messageId, email }) => {
|
|
const urlData = authEndPoint.updateContact(messageId);
|
|
return API.patch(urlData.url, {
|
|
contact: { email },
|
|
});
|
|
},
|
|
};
|