@PATCH("notes/{noteid}")
    suspend fun updateNoteById(
        @Path("noteid") id: String,
        @Body params: Note
    ): Response<Note>