GET
/
unified
/
file-storage
/
file
curl --request GET \
  --url https://api.openint.dev/v0/unified/file-storage/file \
  --header 'x-apikey: <api-key>' \
  --header 'x-connection-id: <api-key>'
{
  "next_cursor": "<string>",
  "has_next_page": true,
  "items": [
    {
      "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

Query Parameters

sync_mode
enum<string>
Available options:
full,
incremental
cursor
string | null
page_size
number
drive_id
string
folder_id
string
drive_group_id
string

Response

200
application/json
Successful response
has_next_page
boolean
required
items
object[]
required

A unified representation of a file

next_cursor
string | null