New HTTP Request : How to see what the call is
Is there a way to show what the call will be? I would like to debug to be sure what the call is being built as...E.g., Show(MyRequest) MyRequest = https://may.api.url/?username=XXX1234567 myAPIURL = "https://my.api.url/";
myRequest = New HTTP Request(
URL(myAPIURL),
Method("GET"),
Headers("username: XXX1234567");
);