GET
/
unified
/
file-storage
/
file
/
{id}
curl --request GET \
  --url https://api.openint.dev/v0/unified/file-storage/file/{id} \
  --header 'x-apikey: <api-key>' \
  --header 'x-connection-id: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "type": "file",
  "path": "<string>",
  "mime_type": "<string>",
  "downloadable": true,
  "size": 123,
  "permissions": {
    "download": true
  },
  "exportable": true,
  "export_formats": [
    "<string>"
  ],
  "updated_at": "<string>",
  "created_at": "<string>",
  "raw_data": "<any>"
}

Authorizations

x-apikey
string
header
required
x-connection-id
string
header
required

Path Parameters

id
string
required

Query Parameters

drive_id
string

Response

200
application/json
Successful response

A unified representation of a file

id
string
required
type
enum<string>
required
Available options:
file,
folder,
url
downloadable
boolean
required
permissions
object
required
exportable
boolean
required
name
string | null
description
string | null
path
string | null
mime_type
string | null
size
number | null
export_formats
string[] | null
updated_at
string | null
created_at
string | null
raw_data
any