delete Note

@DeleteMapping(path = "{" + NOTE_IDENTIFIER_KEY + "}", headers = [] )
open fun deleteNote(    @PathVariable(value = "id") id: String,     @RequestHeader(value = "token") token: String,     @PathVariable(value = "note_id") noteId: String): String

Method to delete an existing note

Return

the result of the request as String

Parameters

id

The identifier of the user

token

The token of the user

noteId

The identifier of the note