-
Notifications
You must be signed in to change notification settings - Fork 46
Api 0.2
Bernhard Posselt edited this page Aug 17, 2013
·
1 revision
The Notes app 0.2 offers a RESTful API
Because REST is stateless you have to send user and password each time you access the API. Therefore running ownCloud with SSL is highly recommended otherwise everyone in your network can log your credentials.
The base URL for all calls is:
https://user:password@yourowncloud.com/index.php/apps/notes/api/v0.2/
All defined routes in the Specification are appended to this url. To access all notes for instance use this url:
https://user:password@yourowncloud.com/index.php/apps/notes/api/v0.2/notes
In general the input parameters can be in the URL or request body, the App Framework doesnt differentiate between them.
So JSON in the request body like:
{
"id": 3
}
will be treated the same as
/?id=3
It is recommended though that you use the following convention:
- GET: parameters in the URL
- POST: parameters as JSON in the request body
- PUT: parameters as JSON in the request body
- DELETE: parameters as JSON in the request body
The output is JSON.