v1

latestOpenAPI 3.1.02026-08-066378446.6 KB
Document Operations

Update personal link

<small>Requires an API token with the Document Manager role.</small>

Updates the document user's active personal link. The link URL never changes; to get a fresh URL, delete the link and create a new one.

Returns a 404 response when the user has no active personal link.

patch/documents/{document}/users/{documentUser}/personal-link

Path parameters

documentstring required

The document UUID

documentUserstring required

The document user UUID

Request body

expires_atstring date-time nullable

When the link stops working. Pass null for a link that never expires

messagestring nullable

A personal message shown to the user when they open the link. Pass null to remove the message

Example request

{
  "expires_at": "2026-10-19T12:00:00Z",
  "message": "Hi Emily, please review the updated contract."
}

Response

ShareableLinkResource

Example response

{
  "data": {
    "uuid": "5cbe6ed1-49a9-40dc-a1c4-9e5a3c9a08f0",
    "url": "https:app.fynk.com/share/5cbe6ed1-49a9-40dc-a1c4-9e5a3c9a08f0?token=...",
    "expires_at": "2026-10-19T12:00:00Z",
    "message": "Hi Emily, please review the updated contract."
  }
}