...
[https://serveraddress/das5/rest/object/method
where object is the name of an object method is the name of the API method to be called. For instance, to create a user object, the request URL is:
[https://serveraddress/das5/rest/user/create
...
The request parameters are expressed as a single JSON object. Its content is entirely defined by the method. For instances:
{"username":"John Smith", "email":"john.smith@acme.com"}
The request parameters MUST be posted to the request URL.
...