Zvini
22:37:31

« Note » get

note/get - Returns a single existing note.
Method parameters:
id - The ID of the note to get.
Returns a JSON document of the following format:
{
id: <number> - The ID of the note.
text: <string> - The text of the note.
encrypt_in_listings: <boolean> - Whether the note is encrypted in listings.
password_protect: <boolean> - Whether the note is password-protected.
tags: <string> - The space-separated list of tags.
insert_time: <number> - The Unix timestamp of when the note was created.
update_time: <number> - The Unix timestamp of when the note was last modified.
}
Expected errors:
NOTE_NOT_FOUND - A note with the ID doesn't exist.