Describe the issue/error/question
Hello,
My issue is that I want to set multiple n8n Webhooks in my TheHive instance.
I’m using this syntax in the TH’s application.conf file, that is supposed to work :
# Configure webhooks
notification.webhook.endpoints = [
{
name: local
url: "http://n8n:5678/webhook/<id>/webhook"
version: 0
wsConfig: {}
auth: {type:"none"}
includedTheHiveOrganisations: ["*"]
excludedTheHiveOrganisations: []
},
{
name: local2
url: "http://n8n:5678/webhook/<id>/webhook"
version: 0
wsConfig: {}
auth: {type:"none"}
includedTheHiveOrganisations: ["*"]
excludedTheHiveOrganisations: []
}
]
However, for now, only the workflow corresponding to the first webhook works. When I swap, the behaviour is the same : only the first works.
Isn’t it possible to trigger 2 workflows for the same TheHive event ?