1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-06-20 09:19:27 +02:00
Files
OpenIntegrations/docs/en/examples/HTTPClient/ExecuteRequest.txt
T
Vitaly the Alpaca (bot) dcf88b42eb Main build (Jenkins)
2025-10-21 11:36:43 +03:00

10 lines
271 B
Plaintext
Vendored

URL = "https://bin.openintegrations.dev";
URL = URL + "/get";
Result = OPI_HTTPRequests.NewRequest()
.Initialize()
.SetURL(URL)
.ProcessRequest("GET", False)
.ExecuteRequest() // <---
.ReturnResponseAsJSONObject();