An open source component for sending and receiving WebHooks on AVA.
Webhook component supports the following authorisation types:
HMAC verification shared secret - use it to verify via a shared secret.
Component supporting 2 types of HMAC verification shared secrets:
For both cases of HMAC authentication it is possible to specify the fields:
x-eio-signature
will be used.The technical notes page gives some technical details about Webhook component like changelog.
Simple webhook trigger which receives data as an input and starts the flow execution after this.
Example:
{
"recievedBody": "recievedBody",
"_query": {},
"_headers": {
"content-type": "application/json",
"accept": "*/*",
"accept-encoding": "gzip, deflate"
},
"_method": "POST",
"_url": "/hook/5d691738cb5a286adc1e68e2"
}
The Webhook component is capable of accepting various data types, with JSON being the most commonly used format due to its compatibility with the platform. However, the Webhook component can process different types of data, which will be explained in detail in this section.
Webhooks support the table format, specifically the x-www-form-urlencoded format. In this format, tabular data is converted into a JSON object with keys and values.
Postman Request Example:
Received Webhook Payload Example:
Webhooks also support the XML format. In this case, the result is a JSON object derived from an XML-structured document while preserving the nesting levels.
Postman Request Example:
Received Webhook Payload Example:
Additionally, webhooks support binary file formats for data reception. These files can include JSON, XML, CSV, as well as pictures in PNG and JPG formats, among others. It is crucial to ensure that the file extension matches the content format within the binary file. Otherwise, an error may occur during sending or the file content may not be properly detected if the extension is missing.
JSON Example:
XML Example:
CSV Example:
Pictures Example:
Pictures are received as a sequence of bytes using the Buffer object.
By supporting these various data types, the Webhook component provides flexibility in processing data according to specific requirements and use cases.
Maximal possible size for an attachment is 10 MB.
Attachments mechanism does not work with the Local Agents.