Hi Guys,I am trying to use the API for the first time, and for testing purposes I am using 1.10-RC2.In short, I am using a local copy of an ASP.NET website's contact form to attempt to create a ticket on a version of OSTicket that is hosted on one of my servers (different location/IP) and under a different URL. When it is live, the website in question will be on the same IP as the OSTicket system, but it will be a different URL (the support system is on a subdomain of the same URL).Now, I am using the following url for the API:my.url.com/api/http.phpI have tried: my.url.com/api/http.php/tickets.json as well as all possible combinations of that (from reading other forum threads).I get a response of: "URL not supported" from the api/http.php URL, showing me that at least the request is getting to a bit of code that can respond... any other URL results in a HTTP response similar to a 404 or redirect to index like the page cannot be found.Now, I have isolated the code thats issuing the "URL not supported" as being:Osticket-Root/Includes/Class.dispatcher.php resolve($url, $args=null)Now, it is important to note that I am not a PHP developer. I know the very basics, but get lost quickly. My original guess was that there is a list of whitelisted URLs somewhere that its checking, and since "localhost" is not there (the URL of my local test website), if kicks it back out as invalid. Which to me makes no sense since I had to authorize my local IP when creating the API key, so the local URL should not be the issue.Hopefully I gave enough info... can anyone shed some light? I would appreciate it!Dave