From 49c055fd0beb9bbfe351814745c30c4e939906cb Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Mon, 24 Feb 2025 14:43:15 -0600 Subject: [PATCH] Update content/shared/v3-core-plugins/_index.md --- content/shared/v3-core-plugins/_index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/content/shared/v3-core-plugins/_index.md b/content/shared/v3-core-plugins/_index.md index 8d80ba8ec..4550fd3aa 100644 --- a/content/shared/v3-core-plugins/_index.md +++ b/content/shared/v3-core-plugins/_index.md @@ -369,7 +369,10 @@ influxdb3 create trigger \ ### On Request trigger -On Request plugins are triggered by a request to a specific endpoint under `/api/v3/engine`. The plugin will receive the local API, query parameters `Dict[str, str]`, request headers `Dict[str, str]`, request body (as bytes), and any arguments passed in the trigger definition. Here's an example of a simple On Request plugin: +On Request plugins are triggered by a request to a specific endpoint under `/api/v3/engine`. The plugin receives the shared API, query parameters `Dict[str, str]`, request headers `Dict[str, str]`, the request body (as bytes), and any arguments passed in the trigger definition. + +#### Example: simple On Request plugin + ```python import json