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

FieldTypeRequiredDescription
driveIdGuidRequiredThe event ID.
linkIdGuidRequiredThe public link ID.

Query Parameters

FieldTypeRequiredDescription
pathstringOptionalNavigate into a subfolder within the link's scope (e.g., `/{folderId}`). Omit to browse the root of the shared content.

Response Fields

FieldTypeDescription
filesarrayFiles accessible at the current path. Each has `id`, `name`, `description`, `path`, and `versions` (version tags).
foldersarrayFolders accessible at the current path. Same structure as files.
patharrayBreadcrumb trail. Each part has `name` and `path`.
permissionsarrayPermissions granted by this link (e.g., `"File.Read"`).

Error Codes

CodeHTTP StatusDescription
NOT_FOUND404Link not found or does not belong to this drive.
BAD_REQUEST400Path is outside the scope of the link.