@d-healey it was missing setBaseURL
Not it worked:
Server.setBaseURL("https://webhook.site");
local url = '/d3168142-e543-4136-ace6-f17a7f0381e5';
local payload = {
"test": 123,
};
Server.callWithPOST(url, payload, function(status, response) {
Utils.cl(status);
Utils.cl(response);
});



