Join BoxWorks 2024 to discover what's possible with content and AI!
Register now!Removes a shared link from a web link.
12345
The ID of the web link.
shared_link
Explicitly request the shared_link
fields
to be returned for this item.
Returns a basic representation of a web link, with the shared link removed.
Returned when the access token provided in the Authorization
header
is not recognized or not provided.
Returned if the user does not have all the permissions to complete the update.
Returned if the file is not found, or the user does not have access to the file.
Returned if the file_id
is not in a recognized format.
Returns an error when the If-Match
header does not match
the current etag
value of the file. This indicates that the file
has changed since it was last requested.
An unexpected client error.
curl -i -X PUT "https://api.box.com/2.0/web_links/32423234?fields=shared_link" \
-H "authorization: Bearer <ACCESS_TOKEN>" \
-d '{
"shared_link": null
}'
client.web_link('12345').remove_shared_link()
BoxWebLink updatedLink = client.WebLinksManager.DeleteSharedLinkAsync("11111");
client.webLinks.deleteSharedLink(forWebLink: "11111") { (result: Result<Void, BoxSDKError>) in
guard case .success = result else {
print("Error removing weblink shared link")
return
}
print("WebLink shared link removed")
}
{
"id": "12345",
"type": "web_link",
"etag": "1",
"shared_link": null
}