1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/examples/HTTPClient/ProcessRequest.txt

9 lines
238 B
Plaintext
Raw Normal View History

2025-09-23 10:13:09 +03:00
 URL = "https://bin.openintegrations.dev";
2025-05-10 22:57:41 +03:00
URL = URL + "/get";
Result = OPI_HTTPRequests.NewRequest()
.Initialize()
.SetURL(URL)
.ProcessRequest("GET") // <---
.ReturnResponseAsJSONObject();