Skip to main content

Overview

The Egnyte API provides endpoints for enterprise file sharing and content governance with Egnyte. Base Path: /api/egnyte

Endpoints

List Files

GET /api/egnyte/files
Query Parameters:
  • path: Egnyte folder path
  • company_id: Associated company
Response:
{
  "files": [
    {
      "id": "egnyte-file-123",
      "name": "Contract.pdf",
      "path": "/Shared/Deals/Acme/Contract.pdf",
      "size": 524288,
      "modified_at": "2024-01-20T10:30:00Z"
    }
  ]
}

Sync Folder

POST /api/egnyte/sync

Upload File

POST /api/egnyte/upload

Next Steps