BizKitHub
DocsAPI ReferenceDrive/bff/drive/detail
getDriveAdmin BFF

/bff/drive/detail

Returns complete information about a file including metadata, URLs for download and viewing. Use this endpoint to get all data needed to display file details in the UI.

DrivegetBffDriveDetail

Parameters

1 query

Query parameters

· 1
tokenstringRequired

Unique file token.

ExampleaB3xKm9pQ2wLn4Yz

Response schema

1 status code documented

200SuccessComplete file information.
tokenstringRequired

Unique file token.

filenamestringRequired

File name.

extensionstringOptional

File extension (e.g., "pdf", "jpg").

sizenumberRequired

File size in bytes.

sizeFormattedstringRequired

Human-readable file size (e.g., "1.5 MB").

contentTypestringRequired

MIME type (e.g., "application/pdf", "image/jpeg").

tagstringOptional

File tag/category if assigned.

insertedDatestringRequired

Date when the file was uploaded (ISO format).

folderIdnumberOptional

Parent folder ID if file is in a folder.

folderPathstringOptional

Full folder path (e.g., "documents/invoices").

blobPathstringRequired

Internal storage path.

downloadUrlstringOptional

Direct URL to download the file.

viewUrlstringRequired

URL to view/stream the file content via the viewer endpoint.

Response example

application/json
{
  "token": "example_token",
  "filename": "example_filename",
  "extension": "example_extension",
  "size": 0,
  "sizeFormatted": "example_sizeFormatted",
  "contentType": "example_contentType",
  "tag": "example_tag",
  "insertedDate": "example_insertedDate",
  "folderId": 0,
  "folderPath": "example_folderPath",
  "blobPath": "example_blobPath",
  "downloadUrl": "example_downloadUrl",
  "viewUrl": "example_viewUrl"
}

Request example

GET /bff/drive/detail

get
curl -X GET "https://api.bizkithub.com/bff/drive/detail?token=aB3xKm9pQ2wLn4Yz" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key