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" + ] +}