RocketKOR

Design  /  Note Use Cases  /  Remove a Note

Remove a Note

Overview

In this use case, we’ll walk through permanently deleting a note.

Important  Be careful when deleting notes. Once deleted, notes cannot be retrieved.

API Operation

Steps

Send a request to the following endpoint:

DELETE /v1/notes/{noteId}

  • Include an Authorization header with your RocketKOR access token as a Bearer Token.
  • Use {noteId} to specify the ID of the note to be deleted.
  • Request body is not required.

Sample Response

If the note is successfully removed, 204 Note has been deleted is returned.

				
					{
   204 Note has been deleted
}
				
			
ON THIS PAGE