Documents Sharing
Update Document Share Link
Updates an existing share link's configuration settings on a document. Share links will only be updatable by the OAuth2.0 client that created them. All fields are optional; omitted settings retain their existing values.
patch/v1/documents/{id}/shares/shareLinks/{shareLinkId}
Path parameters
idstring uuid required
ID of the document.
shareLinkIdstring required
Id of the share link to retrieve information for.
Request body
Example request
{
"linkSecurity": {
"restrictToAccount": false,
"expires": "2023-12-11T21:48:35.293Z",
"passcode": "password",
"allowAnonymous": false
}
}Response
OK with a Document Share Link resource containing information about the updated share link.
Example response
{
"shareLinkId": "inv_8a38797a-e5fc-4479-8492-e000dc93cb60",
"documentId": "f6bf19b5-d109-4ef5-92b2-cdaf0de43001",
"linkSecurity": {
"restrictToAccount": false,
"expires": "2023-12-11T21:48:35.293Z",
"passcode": "password",
"allowAnonymous": false
},
"created": "2022-11-11T21:48:35.293Z",
"createdBy": 1280,
"lastModified": "2022-11-11T21:48:35.293Z",
"acceptUrl": "https://lucid.app/lucidchart/f6bf19b5-d109-4ef5-92b2-cdaf0de43001/edit?invitationId=inv_8a38797a-e5fc-4479-8492-e000dc93cb60"
}