Skip to content

Share Links & Permissions

Share links let you give anyone access to a document without requiring a Notebind account. This is the primary mechanism for getting feedback from human reviewers.

Terminal window
curl -X POST https://notebind.com/api/documents/DOC_ID/share \
-H "Authorization: Bearer nb_sk_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"permission": "comment"}'
Terminal window
notebind share DOC_ID --permission comment

Open a document in the Notebind editor and click the Share button.

Each share link has one of three permission levels:

The recipient can read the document and see existing comments, but cannot interact.

Best for: stakeholders who need to see the document but not provide feedback.

The recipient can read the document, see existing comments, and leave new comments. They cannot modify the document content.

Best for: reviewers who should provide feedback without changing the text.

The recipient can read, comment, edit the document content, and create suggestions. They cannot change the title, delete the document, or manage share links.

Best for: collaborators who need to make direct changes.

ActionViewCommentEdit
Read documentYesYesYes
List commentsYesYesYes
List suggestionsYesYesYes
Create comments-YesYes
Resolve comments-YesYes
Edit document content--Yes
Create suggestions--Yes
Change title---
Delete document---
Manage share links---

Share links can optionally expire:

Terminal window
curl -X POST https://notebind.com/api/documents/DOC_ID/share \
-H "Authorization: Bearer nb_sk_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"permission": "comment",
"expires_at": "2026-04-01T00:00:00.000Z"
}'

After expiration, the link returns a 404 page. Set expires_at to null (or omit it) for links that never expire.

To immediately revoke access:

Terminal window
curl -X DELETE "https://notebind.com/api/documents/DOC_ID/share?link_id=LINK_ID" \
-H "Authorization: Bearer nb_sk_YOUR_KEY"

Revocation is immediate — anyone with the token loses access.

This means:

  • Anonymous comments show no author name in the UI
  • Share users can delete their own anonymous comments but not comments by authenticated users
  • There is no way to attribute anonymous feedback to a specific person

You can create multiple share links for the same document with different permissions:

  • A view link for executives
  • A comment link for reviewers
  • An edit link for co-authors

Each link has its own token and can be revoked independently.

https://notebind.com/share/{token}

The token is a 32-character hex string. The share page renders the document with controls matching the permission level (e.g., comment form for comment permission, editor toolbar for edit permission).