Skip to content

Webhook

REST

A REST node can be used to send message or a workflow using a webhook

This is an important node is the REST node which allows for the creation of a webhook to call other external services.

A webhook is an automated node that will make a REST call to some external service. The REST call will deliver a specified page bundle to this URL.

The data that will be sent will be the following format

{
    'job_code': 'JOB0032',
    'process': 'Third',

    'job': {},
    'event': "in_progress",
}

GraphQL

TODO