Docs
Get Folder
GET /drives/{eventId}/folders/{folderId}
GET
/drives/{eventId}/folders/{folderId}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 details of a specific folder, including its associations and public links. Use Get Drive to browse the folder's contents.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| driveId | Guid | Required | The event ID. |
| folderId | Guid | Required | The folder ID. |
Response Fields
| Field | Type | Description |
|---|---|---|
| id | Guid | The folder's unique ID. |
| partitionKey | Guid | The partition this folder belongs to. |
| name | string | Display name. |
| description | string | Optional description. |
| path | string | Parent path of the folder. |
| fullPath | string | Full path including the folder's own ID. |
| associatedUsers | array | Users with direct access. Each has `id`, `entityId`, `name`, and `permissions`. |
| associatedCollaborators | array | Collaborators with access. Same structure. |
| associatedAreas | array | Areas with access. Same structure. |
| links | array | Public links on this folder. Each has `id`, `name`, and `permissions`. |
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | Folder not found. |