Docs

Get File

GET /drives/{eventId}/files/{fileId}

GET/drives/{eventId}/files/{fileId}

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.
Event tokenx-Event-TokenOptionalRun **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually.

Returns full details for a specific file, including its associations, links, and version summaries. Requires at least File.Read permission on the file's path.

Path Parameters

FieldTypeRequiredDescription
driveIdGuidRequiredThe event ID.
fileIdGuidRequiredThe file ID.

Response Fields

FieldTypeDescription
idGuidThe file's unique ID.
partitionKeyGuidThe partition this file belongs to (event ID, collaborator ID, or area ID).
typestring`"File"` or `"Deliverable"`.
namestringDisplay name.
descriptionstringOptional description.
pathstringParent path of the file.
fullPathstringFull path including the file's own ID.
statusstringCurrent file status. See **File Statuses** below.
dueDateDateTimeDue date (deliverables only).
assignedToobject \| nullnull
permissionsarrayThe current user's permissions on this file.
associatedUsersarrayUsers with direct access. Each has `id`, `entityId`, `name`, `isReviewer`, and `permissions`.
associatedCollaboratorsarrayCollaborators with access. Same structure.
associatedAreasarrayAreas with access. Same structure.
linksarrayPublic links on this file. Each has `id`, `name`, and `permissions`.
versionsarrayVersion summaries. Each has `id`, `tag`, `status`, `comments` (count), and `formats` (MIME type strings).

File Statuses

ValueDescription
NoStatusNo status set (non-deliverable, or no reviewers).
IncompleteDeliverable with no versions uploaded.
AwaitingApprovalPending reviewer responses.
ChangesRequestedAt least one reviewer requested changes.
ApprovedAll reviewers approved the latest version.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token, or insufficient permissions on this file's path.
NOT_FOUND404File not found in this drive.