GET
/
evault
/
v1
/
files
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": "<string>",
      "name": "<string>",
      "file": "<string>",
      "hash": "<string>",
      "mimetype": "<string>",
      "extension": "<string>",
      "file_size": 123,
      "file_size_unit": "<string>",
      "description": "<string>",
      "folder": "<string>",
      "root": true,
      "access": "<string>",
      "is_starred": true,
      "is_archived": true,
      "is_deleted": true,
      "file_share_id": "<string>",
      "is_shared": true,
      "tags": [
        "<string>"
      ],
      "tags_detail": [
        {
          "id": "<string>",
          "name": "<string>",
          "description": "<string>",
          "created_at": "2023-11-07T05:31:56Z",
          "updated_at": "2023-11-07T05:31:56Z"
        }
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

api-key
string
header
required

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

Response

200 - application/json
count
integer
Example:

123

next
string | null
Example:

"http://api.example.org/accounts/?page=4"

previous
string | null
Example:

"http://api.example.org/accounts/?page=2"

results
object[]