Docs

Get Partition Shared Items

GET /drives/{eventId}/partitions/{partitionId}/shared

GET/drives/{eventId}/partitions/{partitionId}/shared

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 all files and folders shared with a specific partition (collaborator or area), along with the permissions granted. Supports optional path and association filtering for navigating into a specific shared subtree.

Path Parameters

FieldTypeRequiredDescription
driveIdGuidRequiredThe event ID.
partitionIdGuidRequiredThe partition ID (collaborator ID or area ID).

Query Parameters

FieldTypeRequiredDescription
pathstringOptionalNavigate into a specific path within the shared subtree (e.g., `/{folderId}`). Omit to return top-level shared items.
associationGuidOptionalThe association ID that granted access to the path. Required when `path` is provided.

Response Fields

FieldTypeDescription
pathPartsarrayBreadcrumb trail for the current path. Each part has `name`, `path`, and `grantedAssociation`.
filesarrayFiles at the current path. See **Item Fields**.
foldersarrayFolders at the current path. See **Item Fields**.
permissionsarrayPermissions on the current path.

Item Fields

FieldTypeDescription
idGuidThe item's unique ID.
grantedAssociationGuidThe association ID that granted access to this item.
typestring`"File"`, `"Deliverable"`, or `"Folder"`.
namestringDisplay name.
descriptionstringOptional description.
pathstringParent path of the item.
fullPathstringFull path including the item's own ID.
permissionsarrayPermissions the partition has on this item.
associationsobjectCollaborator, area, and user associations on the item.
versionsarrayVersion tags for files. Empty for folders.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token, or no access to this partition.
NOT_FOUND404Drive or partition not found.
BAD_REQUEST400path provided without a matching association ID.