delete https://api.productboard.com/v2/notes//relationships/customer
Removes the customer relationship from a note.
A note can be linked to a single customer (either a user or a company). Use this endpoint to disassociate the note from that customer.
This does not delete the customer entity — it only removes the connection between the note and the customer.
Code examples
- Replace
<note-id>
with the ID of the note you want to update. - Replace
<your-token>
with a valid API token.
Unlink a note from its customer:
curl -X DELETE "https://api.productboard.com/v2/notes/<note-id>/relationships/customer" \
-H "Authorization: Bearer <your-token>"