There are two ways to connect webhook:

Connect webhook URL to your account. Each time a workflow with a Webhook automation runs in Hexomatic the JSON formatted data of the workflow will be sent to your provided webhook URL.

To use this type of webhook connection:
  1. Go into Hexomatic Settings

    settings
  2. Select API/Webhook

    webhook
  3. Put your webhook URL inside webhook field

    input

Add webhook connection per workflow. Using Webhook automation connect several webhook URLs in one workflow, and each time the workflow is run at the specified point the JSON formatted data of the workflow will be sent to your provided webhook URLs.

To use this type of webhook connection:
  1. Choose workflow

    monitoring urls
  2. Click on add new automation icon

    edit
  3. Search for Webhook automation and select it

    input
  4. Put your webhook URL in webhook input

    input
  5. To add more webhook URLs click on "ADD NEW FILED" button

    input
  6. Put your second webhook URL in the second input

    input

JSON formatted Data of the workflow is the following
JSON representation

[

{

"[output_key_1]": "[output_values]",

"[output_key_2]": "[output_values]",

"[output_key_3]": "[output_values]",

},

{

"[output_key_1]": "[output_values]",

"[output_key_2]": "[output_values]"

},

{

"[output_key_1]": "[output_values]",

"[output_key_2]": "[output_values]",

"[output_key_3]": "[output_values]",

"[output_key_4]": "[output_values]",

"[output_key_5]": "[output_values]"

}

]