{ "opencollection": "1.0.0", "info": { "name": "Nutshell Notes API", "version": "2.0.0" }, "items": [ { "info": { "name": "Notes", "type": "folder" }, "items": [ { "info": { "name": "Get a note", "type": "http" }, "http": { "method": "GET", "url": "https://app.nutshell.com/rest/notes/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Note ID" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get a single note by the ID provided." }, { "info": { "name": "Delete a note.", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.nutshell.com/rest/notes/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Note ID" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete a note by the ID provided. Can be restored with the undelete endpoint." }, { "info": { "name": "Undelete a note.", "type": "http" }, "http": { "method": "POST", "url": "https://app.nutshell.com/rest/notes/:id/undelete", "params": [ { "name": "id", "value": "", "type": "path", "description": "Note ID" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Undelete a note by the ID provided." }, { "info": { "name": "Get a list of notes", "type": "http" }, "http": { "method": "GET", "url": "https://app.nutshell.com/rest/notes", "params": [ { "name": "page[limit]", "value": "", "type": "query", "description": "Limit the number of results returned, for pagination." }, { "name": "page[page]", "value": "", "type": "query", "description": "Request a specific page of results, for pagination. Used in conjunction with the page[limit] parameter. Indexing is 0-based." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get a list of notes." }, { "info": { "name": "Create a note", "type": "http" }, "http": { "method": "POST", "url": "https://app.nutshell.com/rest/notes", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create a note" } ] } ], "bundled": true }