From 58a350583986716c9ef42740b076681286738974 Mon Sep 17 00:00:00 2001 From: nicosammito Date: Tue, 14 Apr 2026 20:58:29 +0200 Subject: [PATCH] feat: add http_request_send.proto.json for sending HTTP requests with detailed parameters --- .../http/http_request_send.proto.json | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 definitions/standard/runtime_functions/http/http_request_send.proto.json diff --git a/definitions/standard/runtime_functions/http/http_request_send.proto.json b/definitions/standard/runtime_functions/http/http_request_send.proto.json new file mode 100644 index 0000000..ca19a56 --- /dev/null +++ b/definitions/standard/runtime_functions/http/http_request_send.proto.json @@ -0,0 +1,55 @@ +{ + "runtimeName": "http::request::send", + "runtimeParameterDefinitions": [ + { + "runtimeName": "http_request", + "defaultValue": null, + "name": [ + { + "code": "en-US", + "content": "HTTP request object" + } + ], + "description": [ + { + "code": "en-US", + "content": "Takes an HTTP request object, which includes the HTTP method, url, headers, and payload, and sends it to the specified endpoint." + } + ], + "documentation": [] + } + ], + "throwsError": true, + "name": [ + { + "code": "en-US", + "content": "Send HTTP request" + } + ], + "description": [ + { + "code": "en-US", + "content": "Sends a request to the specified url with the given method, headers and payload, and returns the response as an HTTP_RESPONSE object. This function initiates an HTTP request to a specified endpoint, allowing you to interact with web services or APIs by sending data and receiving responses." + } + ], + "documentation": [], + "alias": [ + { + "code": "en-US", + "content": "send;sends;execute;request;http" + } + ], + "displayMessage": [ + { + "code": "en-US", + "content": "Send request with ${http_request}" + } + ], + "deprecationMessage": [], + "displayIcon": "tabler:world-www", + "signature": "(http_request: HTTP_REQUEST): HTTP_RESPONSE", + "linkedDataTypeIdentifiers": [ + "HTTP_RESPONSE", + "HTTP_REQUEST" + ] +}