Skip to main content
GET
/
file-entries
/
{entryId}
curl https://app.drime.cloud/api/v1/file-entries/485529678 \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "status": "success",
  "fileEntry": {
    "id": 485529678,
    "name": "photo.jpg",
    "type": "image",
    "hash": "NDg1NTI5Njc4fA",
    "file_size": 2048576,
    "mime": "image/jpeg",
    "extension": "jpg",
    "parent_id": null,
    "workspace_id": 0,
    "url": "api/v1/file-entries/485529678",
    "thumbnail_url": "https://app.drime.cloud/storage/thumbnails/abc123.jpg",
    "created_at": "2024-01-14T08:20:00.000000Z",
    "updated_at": "2024-01-14T08:20:00.000000Z",
    "users": [
      {
        "id": 15843,
        "email": "user@example.com",
        "owns_entry": true
      }
    ]
  }
}

Overview

Returns detailed information about a specific file or folder entry.

Path Parameters

entryId
integer
required
The file entry ID

Query Parameters

workspaceId
integer
Workspace context
thumbnail
boolean
When true, include thumbnail information if available

Response

fileEntry
object
The file entry object with all details
status
string
Request status (success)
curl https://app.drime.cloud/api/v1/file-entries/485529678 \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "status": "success",
  "fileEntry": {
    "id": 485529678,
    "name": "photo.jpg",
    "type": "image",
    "hash": "NDg1NTI5Njc4fA",
    "file_size": 2048576,
    "mime": "image/jpeg",
    "extension": "jpg",
    "parent_id": null,
    "workspace_id": 0,
    "url": "api/v1/file-entries/485529678",
    "thumbnail_url": "https://app.drime.cloud/storage/thumbnails/abc123.jpg",
    "created_at": "2024-01-14T08:20:00.000000Z",
    "updated_at": "2024-01-14T08:20:00.000000Z",
    "users": [
      {
        "id": 15843,
        "email": "user@example.com",
        "owns_entry": true
      }
    ]
  }
}