storage
0.000001 USD
Create a new note
textstring
note text
titlestring
note title
noteobject
The created note
Request
Response
{
"note": {
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:33:03+01:00",
"title": "New Note",
"text": "This is my note"
}
}
0.000001 USD
Delete a note
idstring
specify the id of the note
noteobject
Request
Response
{
"note": {
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:50:20+01:00",
"title": "Update Note",
"text": "Updated note text"
}
}
0.000001 USD
Subscribe to notes events
idstring
optionally specify a note id
eventstring
the event which occured; create, delete, update
noteobject
the note which the operation occured on
Request
Response
{
"event": "deleted",
"note": {
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:50:20+01:00",
"title": "Update Note",
"text": "Updated note text"
}
}
0.000001 USD
List all the notes
notesarray
the list of notes
Request
Response
{
"notes": [
{
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:33:03+01:00",
"title": "New Note",
"text": "This is my note"
}
]
}
0.000001 USD
Read a note
idstring
the note id
noteobject
The note
Request
Response
{
"note": {
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:33:03+01:00",
"title": "New Note",
"text": "This is my note"
}
}
0.000001 USD
Update a note
noteobject
noteobject
Request
Response
{
"note": {
"id": "63c0cdf8-2121-11ec-a881-0242e36f037a",
"created": "2021-09-29T13:33:03+01:00",
"updated": "2021-09-29T13:50:20+01:00",
"title": "Update Note",
"text": "Updated note text"
}
}