Enhance your 3CX
3CX first-time calls
First impression: The initial call sets the tone for the customer's experience with the call center. It is often the first point of contact and shapes the customer's perception of the company or organization. A positive experience during the first call can create a favorable impression and build customer loyalty. On the other hand, a negative experience may result in customer dissatisfaction and potentially lead to lost business.
select count (*) as count
FROM public.call_history_view where src_external = true and src_caller_number = '381629759789'
group by src_caller_number
SELECT min (segment_start_time), src_caller_number, count (*) as count
FROM public.call_history_view where src_external = true and segment_start_time > '2023-06-09 11:19:51+00'
group by src_caller_number
having count(*) = 1