Skip to main content
GET
/
track
/
all
curl -X GET "https://app.drime.cloud/api/v1/track/all?page=1" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "status": "success",
  "pagination": {
    "data": [
      {
        "id": 487159699,
        "name": "proposal.pdf",
        "type": "pdf",
        "file_size": 2048576,
        "views_number": 15,
        "dl_number": 3,
        "views": [
          {
            "id": 1,
            "ip": "192.168.1.1",
            "date": "2025-12-28 06:42:58",
            "action": "view"
          }
        ]
      }
    ],
    "current_page": 1,
    "last_page": 1,
    "total": 1
  }
}

Overview

Retrieves all files that have tracking enabled. Shows view counts and download statistics for each tracked file.

Query Parameters

workspaceId
integer
Filter by workspace ID
page
integer
default:"1"
Page number
perPage
integer
default:"15"
Items per page

Response

pagination
object
Paginated list of tracked files
status
string
Request status (success)
curl -X GET "https://app.drime.cloud/api/v1/track/all?page=1" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "status": "success",
  "pagination": {
    "data": [
      {
        "id": 487159699,
        "name": "proposal.pdf",
        "type": "pdf",
        "file_size": 2048576,
        "views_number": 15,
        "dl_number": 3,
        "views": [
          {
            "id": 1,
            "ip": "192.168.1.1",
            "date": "2025-12-28 06:42:58",
            "action": "view"
          }
        ]
      }
    ],
    "current_page": 1,
    "last_page": 1,
    "total": 1
  }
}
File tracking is useful for monitoring engagement with shared documents, such as proposals or contracts.