- Joined
- Sep 8, 2025
- Messages
- 3
- Reaction score
- 1
Recently, the 3cx version was upgraded from version 18 to 20.0.6.724. There were no changes other than the upgrade.
Since the upgrade has happened, the call journaling has stopped working as expected.
The end-point is not being called and I can not see anything inside of the 3cxSystemService.log file (verbose logging has been enabled) that indicates there is any attempt to call the URL. The "Enable Call Journaling" option has been ticked inside of the CRM integration section.
Below is a snippet of the scenario that handles the call journaling.
The template in use is not a pre-defined one, it is for a custom CRM.
Does anyone have any advice on how to resolve this issue?
Since the upgrade has happened, the call journaling has stopped working as expected.
The end-point is not being called and I can not see anything inside of the 3cxSystemService.log file (verbose logging has been enabled) that indicates there is any attempt to call the URL. The "Enable Call Journaling" option has been ticked inside of the CRM integration section.
Below is a snippet of the scenario that handles the call journaling.
XML:
<Scenario Id="ReportCall" Type="REST">
<Request SkipIf="[ReportCallEnabled]!=True||[CallType]!=Inbound" Url="[end-point]" MessagePasses="0" RequestContentType="application/json" RequestEncoding="Json" RequestType="Post" ResponseType="Json">
<PostValues Key="">
<Value Key="duration" Passes="1" Type="String">[Duration]</Value>
<Value Key="phone" Passes="1" Type="String">[Number]</Value>
<Value Key="agent" Passes="1" Type="String">[Agent]</Value>
</PostValues>
</Request>
<Variables />
<Outputs Next="ReportCallMissed" AllowEmpty="true" />
</Scenario>
The template in use is not a pre-defined one, it is for a custom CRM.
Does anyone have any advice on how to resolve this issue?