# get_share_link_access **Who opened a share link** Who has opened a link and when, plus which invited people never did. ⚠️ This identifies the VERIFIED EMAIL ADDRESS, not the device or the person: IP address and user agent are deliberately not recorded, and the log holds at most 200 entries. Say that plainly if you report it, rather than implying you know who was sitting at the screen. Read-only. - Access: read-only - Calls: `/api/v1/share-links/` ## Arguments | Name | Type | Required | Description | |---|---|---|---| | `shareLinkId` | string | **yes** | The share link to inspect | ## Tool contract ```json { "name": "get_share_link_access", "title": "Who opened a share link", "description": "Who has opened a link and when, plus which invited people never did. ⚠️ This identifies the VERIFIED EMAIL ADDRESS, not the device or the person: IP address and user agent are deliberately not recorded, and the log holds at most 200 entries. Say that plainly if you report it, rather than implying you know who was sitting at the screen. Read-only.", "access": "read", "destructive": false, "hostedOnProduction": true, "restEndpoint": "/api/v1/share-links/", "arguments": { "shareLinkId": { "type": "string", "required": true, "description": "The share link to inspect" } } } ```