How to use webhooks in auto comment tool?

How can I build a webhook for auto comment ? What is the expected response format ?

You can either build your own webhook using code or you can use our webhook creation tool.

If you use our webhook creation tool, this is going to be easier since we have templates you can use.

Go to https://webhooks.ideta.io

Then click on “Create a webhook” and follow the steps :

Make sure to select the Auto Comment Template :

The “Extract comment value” bubble has little interest.

The “Filter” bubble will detect if the comment contains a given value :

You can set up multiple answers or have multiple filter step one after the other. You just have to create them.

Then you can copy the webhook URL in the Publish section (make sure it is published) :

In both cases (code or webhooks tool), the output has to be JSON and in the following format (see Answer bubble) :

The generic format is the following :
{
“reactions”: string[ ] | string,
“privateMessages”:string[ ] | string,
“publicMessages”: string[ ] | string
}

For example, this can look like that :

{
“reactions”: [“like”, “angry”],
“privateMessages”:[“answer 1”, “answer 2”],
“publicMessages”:[“answer 3”, “answer 4”]
}

or like that :

{
“reactions”: “like”,
“privateMessages”:[“answer 1”, “answer 2”],
“publicMessages”: “answer3”
}

Then you can use it in the auto comment tool :

This is just the basics ! We have Natural Language Processing and Sentiment Analysis available. And you can combine everything in a complex workflow.

Do not hesitate to contact support@ideta.io to get additional help.