14115 SIPs events on summary page

This commit is contained in:
2025-02-19 15:00:25 +00:00
parent e1444887cb
commit ae5c0b4e39
10 changed files with 310 additions and 1 deletions
+12
View File
@@ -301,6 +301,18 @@ export const getBasicDNSURLSearch = (searchString) => {
});
};
export const getSIPSEvents = (caseid) => {
return axios
.get(BASE_URL + "/api/endpoint/getsipsevents_api?caseid=" + caseid)
.then((res) => {
return res.data;
})
.catch((error) => {
consoleLogger(error);
return error.response;
});
};
export const getAddressSearchPaged = (
searchString,
pageNumber,