quickest-silver•2w ago
Regarding server URL
Hi Team,
I have a use case where I need an end of call report for a call when the workflow is done. Since agent node does't support server url in it i set it up on org level. which led to spamming of events on my n8n workflow. Is there a way to limit it to send only the end of the call report or any way to set it up on workflow itself for the report?
1 Reply
Hi Namit,
To limit the events sent to your server URL and ensure you only receive the end of call report, you can make use of the
serverMessages
setting within your workflow configuration.
Add "serverMessages": ["end-of-call-report"]
to your workflow settings. Then, include an API Request node at the end of your workflow to POST the call details like {{call.id}}
and {{call.transcript}}
to your n8n webhook URL.
This setup should focus on sending only the end of call report data, reducing the spamming issue you encountered. You can find more information on setting server URLs in workflows here.