- Joined
- Aug 4, 2022
- Messages
- 25
- Reaction score
- 3
Good morning everyone,
I have an installation that has CRM integration to MySQL active that I use to send data via api from the call log.
All calls are correctly sent to the database EXCEPT the unanswered outgoing calls. Why?
This is the query I use in the Call Journaling SQL Statement
INSERT INTO calls (calltype, contactnumber, calldirection, queueextension,agentextension, duration, calldatetime) VALUES (@CallType, @number, @CallDirection, @QueueExtension, @Agent, @Duration, DATE_FORMAT(@CallEstablishedTimeUTC, '%Y-%m-%dT%H:%i:%s%Z'))
How can I also send the unanswered outgoing calls?
Thanks
I have an installation that has CRM integration to MySQL active that I use to send data via api from the call log.
All calls are correctly sent to the database EXCEPT the unanswered outgoing calls. Why?
This is the query I use in the Call Journaling SQL Statement
INSERT INTO calls (calltype, contactnumber, calldirection, queueextension,agentextension, duration, calldatetime) VALUES (@CallType, @number, @CallDirection, @QueueExtension, @Agent, @Duration, DATE_FORMAT(@CallEstablishedTimeUTC, '%Y-%m-%dT%H:%i:%s%Z'))
How can I also send the unanswered outgoing calls?
Thanks