v1
latestOpenAPI 3.1.02026-08-066378446.6 KBCreate personal link
<small>Requires an API token with the Document Manager role.</small>
Creates a personal link tied to the document user. Anyone who has the link URL can access the document as that user, so treat the URL like a secret. Delivering the link to the user is up to you; fynk sends no email.
A document user has at most one active personal link at a time; if one already exists, a 409 response is returned. Delete the existing link first to create a new one with a fresh URL.
Note: Personal links can only be created for users without a fynk account user in your account (has_account_user is false), and not while the document is in the draft or approved_draft stage. Attempting either will return a 409 response.
Path parameters
The document UUID
The document user UUID
Request body
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."
}
}