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>"
}
Successful response
A unified representation of a file
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>"
}