GET/drives/{eventId}/files/{fileId}/versions/{versionId}
Required Tokens
| Field | Type | Required | Description |
|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually. |
Returns the full details of a specific file version, including its comments, reviews, and all uploaded formats with download URIs. Requires at least File.Read permission on the file's path.
Path Parameters
| Field | Type | Required | Description |
|---|
| driveId | Guid | Required | The event ID. |
| fileId | Guid | Required | The file ID. |
| versionId | Guid | Required | The version ID. |
Response 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). |
| status | string | Version status. See **File Statuses** in the Get File docs. |
| comments | array | Comments on this version. See **Comment Fields**. |
| reviews | array | Reviews submitted on this version. See **Review Fields**. |
| formats | array | Uploaded formats for this version. See **Format Fields**. |
| Field | Type | Description |
|---|
| id | Guid | Comment ID. |
| userId | Guid | Author's user ID. |
| userName | string | Author's display name. |
| timeStamp | DateTime | When the comment was posted (UTC). |
| content | string | Comment text. |
Review Fields
| Field | Type | Description |
|---|
| id | Guid | Review ID. |
| reviewerId | Guid | Reviewer's user ID. |
| reviewerName | string | Reviewer's display name. |
| response | string | `"Approved"`, `"Changes Requested"`, or `"No Response"`. |
| Field | Type | Description |
|---|
| id | Guid | Format ID. |
| type | string | MIME type (e.g., `"application/pdf"`). |
| size | int | File size in bytes. |
| uri | string | Time-limited SAS URI for downloading this format. |
Error Codes
| Code | HTTP Status | Description |
|---|
UNAUTHORIZED | 401 | Missing or invalid token, or insufficient permissions. |
NOT_FOUND | 404 | File or version not found. |