Delete product hierarchy relationship

Deletes a relationship between a note and a product hierarchy item.

This is used to unlink a note from a specific feature, component, or other product entity that it was previously associated with.

Only hierarchyItem is currently supported as the relationship type. If you need to remove a customer relationship (user or company), use the dedicated DELETE /relationships/customer endpoint.

Code examples

  • Replace <note-id> with the ID of the note.
  • Replace <target-id> with the ID of the product hierarchy item.
  • Replace <your-token> with a valid API token.

Unlink a note from a feature:

curl -X DELETE "https://api.productboard.com/v2/notes/<note-id>/relationships/hierarchyItem/<target-id>" \
  -H "Authorization: Bearer <your-token>"
Language
Credentials
Header
Click Try It! to start a request and see the response here!