GET v1/assets/file/all/{folderId}?sort={sort}

Use this method to retrieve the complete file list within the provided folder id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
folderId

The folder id where the files are stored.

string

Required

sort

Optional sorting direction, this can be Ascending, Descending, or default, default value is Default. Default is treated as, in the order records were created.

SortOption

Default value is Default

Body Parameters

None.

Response Information

Resource Description

Returns a list with all files within the folder specified. HTTP status code 404 will be returned if the folder specified does not exist.

Collection of FileAssetModel
NameDescriptionTypeAdditional information
id

The file unique identifier, this value is assigned by the server upon successfully uploading a file.

string

None.

name

File display name (not the actual physical file name)

string

None.

type

File Type

FileType

None.

tags

File tags, you can use these to filter files within a particular or set of tags

Collection of string

None.

size

Physical file size, This value is calculated at the time of upload.

string

None.

url

File URL

string

None.

modified

This property shows when was the last time the file (or its data was modified) The time is provided in UTC

date

None.

folder

This is the file's parent folder id

string

None.

notes

Notes related to this file.

string

None.

dimensions

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "sample string 1",
    "name": "sample string 2",
    "type": {
      "typeId": "sample string 1",
      "type": "sample string 3"
    },
    "tags": [
      "sample string 1",
      "sample string 2"
    ],
    "size": "sample string 4",
    "url": "sample string 5",
    "modified": "2025-06-26T07:50:09.167731-07:00",
    "folder": "sample string 7",
    "notes": "sample string 9",
    "dimensions": "sample string 10"
  },
  {
    "id": "sample string 1",
    "name": "sample string 2",
    "type": {
      "typeId": "sample string 1",
      "type": "sample string 3"
    },
    "tags": [
      "sample string 1",
      "sample string 2"
    ],
    "size": "sample string 4",
    "url": "sample string 5",
    "modified": "2025-06-26T07:50:09.167731-07:00",
    "folder": "sample string 7",
    "notes": "sample string 9",
    "dimensions": "sample string 10"
  }
]