Hi everyone ![]()
I’m working on a workflow that sends SOAP commands to an AzerothCore server and formats the response for Discord. The current setup uses a manualTrigger, but I’d like to trigger it via a Webhook so external systems can send commands dynamically.
What I’ve built so far:
-
HTTP Request node with raw XML payload to send .server info to AzerothCore
-
XML node to parse the SOAP response
-
Set + Code nodes to extract and format the output
-
Discord node to send a clean message with server status
What I want to achieve:
-
Replace
manualTriggerwith aWebhooknode -
Accept POST requests with a JSON body like
{ "command": ".server info" } -
Dynamically inject the command into the SOAP envelope
If anyone has done something similar or has ideas for improving this flow, I’d love to hear your thoughts!