Docs
Get Drive Link
GET /drives/{eventId}/links/{linkId}
GET
/drives/{eventId}/links/{linkId}Required Tokens
No authentication required. This endpoint is publicly accessible via a shared link — it is intended for external users who have received a link from an event participant.
Browses the contents of a public shared link. Returns the files and folders accessible through the link at the given path. This endpoint requires no authentication and is suitable for embedding in public-facing applications.
Public links are created via Add File Link or Add Folder Link and grant the permissions defined on the link.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| driveId | Guid | Required | The event ID. |
| linkId | Guid | Required | The public link ID. |
Query Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| path | string | Optional | Navigate into a subfolder within the link's scope (e.g., `/{folderId}`). Omit to browse the root of the shared content. |
Response Fields
| Field | Type | Description |
|---|---|---|
| files | array | Files accessible at the current path. Each has `id`, `name`, `description`, `path`, and `versions` (version tags). |
| folders | array | Folders accessible at the current path. Same structure as files. |
| path | array | Breadcrumb trail. Each part has `name` and `path`. |
| permissions | array | Permissions granted by this link (e.g., `"File.Read"`). |
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
NOT_FOUND | 404 | Link not found or does not belong to this drive. |
BAD_REQUEST | 400 | Path is outside the scope of the link. |