1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-04-30 20:49:04 +02:00
Files
OpenIntegrations/docs/en/examples/HTTPClient/ProcessRequest.txt
T

9 lines
238 B
Plaintext
Raw Normal View History

2025-10-05 19:19:32 +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();