delete https://api.productboard.com/v2/notes/
Permanently deletes a note from your workspace. This action is irreversible and should be used with caution.
Once deleted, the note and all of its content, metadata, and relationships will be removed and cannot be recovered.
To perform a soft-delete (archiving), use an update call instead to set the
archived
flag.
Code examples
- Replace
<note-id>
with the ID of the note you want to delete. - Replace
<your-token>
with a valid API token.
Delete a note by ID:
curl -X DELETE "https://api.productboard.com/v2/notes/<note-id>" \
-H "Authorization: Bearer <your-token>"