Added an optional parameter onlyPreferredCall in the getAllCalls API to filter the response and include only preferred calls

This commit is contained in:
rajesh
2024-11-20 18:43:33 +05:30
parent b8d9ab9c46
commit 49a122aba7
9 changed files with 31 additions and 9 deletions

View File

@@ -21,7 +21,7 @@ public interface CallService {
CallResponse getCallById (HttpServletRequest request, Long callId,Long companyId);
List<CallDetailsResponseBean> getAllCalls(HttpServletRequest request,Long companyId);
List<CallDetailsResponseBean> getAllCalls(HttpServletRequest request,Long companyId,Boolean onlyPreferredCall);
CallResponse validateCallData(HttpServletRequest request, Long callId);