Will a custom node automatically register a webhookUrl after configuring the Webhook? I will webhookBaseUrl: http://localhost:5678/webhook 'and webhookId joining together to generate a webhookUrl? I’m not sure if this is correct. If it is, but it shows as registration when opened, then how should I register this webhookUrl and where should I configure it
The configured webhook content is as follows
webhooks: [
{
name: 'default',
httpMethod: 'GET',
responseMode: 'onReceived',
path: '',
restartWebhook: true,
isFullPath: true,
nodeType: 'dragForm',
},
{
name: 'default',
httpMethod: 'POST',
responseMode: 'responseNode',
path: '',
restartWebhook: true,
isFullPath: true,
nodeType: 'dragForm',
},
],
webhookMethods: {
default: {
checkExists: () => this.checkExists,
create: () => this.create,
delete: () => this.delete,
},
},