Hi all,
This is just a quick note to inform you that support for the HTTP class (i.e. doing HTTP requests from CRMScript) is now officially available in Online. I will not go into all the cool stuff you can use it for in this article, but here is one highly useful example:
HTTP h;
XMLNode root = parseJSON(String(h.get("https://api.chucknorris.io/jokes/random")));
printLine(root.getValueFromPath("value"));
Sverre