# revoke_share_link **Revoke a share link** Stop a link working. Immediate: the next attempt to open it fails. ⚠️ It cannot un-send what was already downloaded, so say that when you confirm it. - Access: write - Calls: `/api/v1/share-links/` ## Arguments | Name | Type | Required | Description | |---|---|---|---| | `shareLinkId` | string | **yes** | The share link to revoke | ## Tool contract ```json { "name": "revoke_share_link", "title": "Revoke a share link", "description": "Stop a link working. Immediate: the next attempt to open it fails. ⚠️ It cannot un-send what was already downloaded, so say that when you confirm it.", "access": "write", "destructive": false, "hostedOnProduction": true, "restEndpoint": "/api/v1/share-links/", "arguments": { "shareLinkId": { "type": "string", "required": true, "description": "The share link to revoke" } } } ```