Where could I find the REST api docs? I've seen that 3.1 has support for REST api but i've not found any docs.
There are no REST specific docs yet. The function calls are the same than the ones described in the remote api docs.
SOAP works differently from REST. In a REST API, the URI endpoint are mandatory. Without knowing the URI endpoints, is not possible to develop a REST client.
With SOAP you have a URI endpoint as well. There is a file json.php in the remote folder, so the endpoint is: https://192.168.1.100:8080/remote/json.php?FUNCTIONNAME
Ok. But if you use the same endpoint for REST, so, is not REST. https://en.wikipedia.org/wiki/Repre...fer#Relationship_between_URL_and_HTTP_methods
Feel free to add a .htaccess file if you want to have different looking endpoints for each function *lol*
With this response you confirmed that you doesn't know what RESTFul is. Ok, good to know, but please don't call REST what REST isn't. Is something like calling "apple" a "pear" only because even the apples are yellow.
I know what REST API is, all I see is that you don't get it that the above API has a dedicated URL endpoint for each function, we just did not add a .htaccess with a rewrite rule that rewrites an incoming /json/FUNCTIONNAME request to json.php?FUNCTIONNAME internally. If you feel that the form of the URL is so important for you, then feel free to add a .htaccess to rewrite it on your server and if you don't like it, don't use it.