GET/drives/{eventId}/links/{linkId}/files/{fileId}
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.
Returns the full details of a specific file accessible through a public link, including all versions and their formats with download URIs. Use the sasUri on each format to download the file directly from Azure Blob Storage.
Path Parameters
| Field | Type | Required | Description |
|---|
| driveId | Guid | Required | The event ID. |
| linkId | Guid | Required | The public link ID. |
| fileId | Guid | Required | The ID of the file to retrieve. Must be within the link's scope. |
Response Fields
| Field | Type | Description |
|---|
| id | Guid | The file's unique ID. |
| name | string | Display name. |
| description | string | Optional description. |
| path | string | Parent path of the file. |
| status | string | Current file status. See **File Statuses**. |
| versions | array | All versions of the file. See **Version Fields**. |
Version Fields
| Field | Type | Description |
|---|
| id | Guid | Version ID. |
| versionTag | string | Auto-generated version label (e.g., `"Version 1"`). |
| createdDate | DateTime | When this version was created (UTC). |
| formats | array | Uploaded formats for this version. See **Format Fields**. |
| Field | Type | Description |
|---|
| id | Guid | Format ID. |
| type | string | MIME type of the uploaded file (e.g., `"application/pdf"`, `"video/mp4"`). |
| size | int | File size in bytes. |
| uri | string | Time-limited SAS URI for downloading this format directly from Azure Blob Storage. |
File Statuses
| Value | Description |
|---|
NoStatus | No status set (non-deliverable files, or no reviewers assigned). |
Incomplete | Deliverable with no versions uploaded yet. |
AwaitingApproval | Reviewers assigned but not all have responded. |
ChangesRequested | At least one reviewer has requested changes. |
Approved | All reviewers have approved the latest version. |
Error Codes
| Code | HTTP Status | Description |
|---|
NOT_FOUND | 404 | Link or file not found. |
UNAUTHORIZED | 401 | File is not accessible through this link. |