Using Webhook Responses

When working with webhooks in scenarios, you can process the webhook response as JSON or TEXT. For the JSON format, use the following Jinja command {{ webhook.json_response_property_name }} for a single webhook or the last webhook in your scenario. In case you have multiple webhooks you can also use {{ webhook(x).json_response_property_name }}, where x indicates the order number of the webhook in the particular scenario path. For the TEXT format access the response text via the Jinja command {{ webhook.data }} or {{ webhook(x).data }}.
Webhook responses can also be accessed via Jinja using the webhook action id that generated it: {{ webhook.by_action_id(x).data }}.

Webhook can process the responses up to 64KB of raw unparsed data.