# NoteHub API **Version 1.0, status: draft!** ## Prerequisites The NoteHub API can only be used in combination with a __Publisher ID__ (PID) and __Publisher Secret Key__ (PSK), which can be issued [here](http://notehub.org/api/register). The PSK can be revoked at any moment in case of an API abuse. A PID is a string chosen by the publisher and cannot be longer than 16 characters (e.g.: __notepadPlugin__). A PSK will be generated by the NoteHub API and can be a string of any length and content. All API requests must be issued with one special parameter `version` denoting the expected version of the API as a string, e.g. `1.0` (see examples below). You should always put the version of this document as a `version` parameter. ## Note Retrieval A simple `GET` request to the following URL: http://notehub.org/api/note?version=1.0&title= will return a JSON object containing following self explaining fields: `note`, `longURL`, `shortURL`, `statistics`, `status`. Example: { note: , longURL: "http://notehub.org/2014/1/3/lorem-ipsum", shortURL: "http://notehub.org/0vrcp", statistics: { published: "2014-1-3", views: 24 }, status: { success: true, comment: } } Hence, the status of the request can be evaluated by reading of the property `status.success`. The field `status.comment`might contain an error message, a warning or any other comments from the server. The note ID is a string, containing the date of publishing and a few first words of the note (usually the header), e.g.: `2014/1/3/lorem-ipsum`. This ID will be generated by NoteHub automatically. ## Note Creation A note must be created by a `POST` request to the following URL: http://notehub.org/api/note with the following parameters: Parameter | Explanation | Type --- | --- | --- `note` | Text to publish | **required** `pid` | Publisher ID | **required** `signature` | Signature | **required** `password` | MD5 hash of a plain password for editing | *optional* `version` | Used API version | **required** The Signature is the MD5 hash of the following string concatenation: pid + psk + note The signature serves as a proof, that the request is authentic and will be issued by the publisher corresponding to the provided PID. The response of the server will contain the fields `noteID`, `longURL`, `shortURL`, `status`. Example: { noteID: "2014/1/3/lorem-ipsum", longURL: "http://notehub.org/2014/1/3/lorem-ipsum", shortURL: "http://notehub.org/0vrcp", status: { success: true, comment: } } The status object serves the same purpose as in the case of note retrieval. ## Note Update To update a note, an `PUT` request must be issued to the following URL: http://notehub.org/api/note with the following parameters: Parameter | Explanation | Type --- | --- | --- `noteID` | Note-ID | **required** `note` | New text | **required** `pid` | Publisher ID | **required** `signature` | Signature | **required** `password` | MD5 hash of the plain password used for creation | **required** `version` | Used API version | **required** The Signature is the MD5 hash of the following string concatenation: pid + psk + noteID + note + password The response of the server will contain the fields `longURL`, `shortURL`, `status`. Example: { longURL: "http://notehub.org/2014/1/3/lorem-ipsum", shortURL: "http://notehub.org/0vrcp", status: { success: true, comment: } } The status object serves the same purpose as in the case of note retrieval and creation.