GET
/
v1
/
resources
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "account_id": "<string>",
      "name": "<string>",
      "directory_path": "<string>",
      "mime_type": "<string>",
      "sha256": "<string>",
      "original_uri": "<string>",
      "external_id": "<string>",
      "external_storage_type": "s3",
      "storage_bucket": "<string>",
      "storage_key": "<string>",
      "size_bytes": 123,
      "tags": [
        "<string>"
      ],
      "metadata": {},
      "created_by": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "page": 123,
  "page_size": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

tags
string

Filter resources by tags (comma-separated list)

directory_prefix
string

Filter resources by directory path prefix

created_after
string<date-time>

Filter resources created after this timestamp (ISO 8601)

created_before
string<date-time>

Filter resources created before this timestamp (ISO 8601)

sort
enum<string>
default:desc

Sort order for created_at field

Available options:
asc,
desc
page
integer
default:1

Page number for pagination

Required range: x >= 1
page_size
integer
default:20

Number of items per page

Required range: 1 <= x <= 100

Response

200
application/json

OK

The response is of type object.