mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-20 13:05:16 +00:00
23 lines
721 B
JavaScript
Executable File
23 lines
721 B
JavaScript
Executable File
import endPoints from 'widget/api/endPoints';
|
|
import { API } from 'widget/helpers/axios';
|
|
|
|
const sendMessageAPI = async content => {
|
|
const urlData = endPoints.sendMessage(content);
|
|
const result = await API.post(urlData.url, urlData.params);
|
|
return result;
|
|
};
|
|
|
|
const sendAttachmentAPI = async attachment => {
|
|
const urlData = endPoints.sendAttachmnet(attachment);
|
|
const result = await API.post(urlData.url, urlData.params);
|
|
return result;
|
|
};
|
|
|
|
const getConversationAPI = async ({ before }) => {
|
|
const urlData = endPoints.getConversation({ before });
|
|
const result = await API.get(urlData.url, { params: urlData.params });
|
|
return result;
|
|
};
|
|
|
|
export { sendMessageAPI, getConversationAPI, sendAttachmentAPI };
|