GET v1/assets/file/{id}

Use this method to quickly retrieve the information for a single file.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The file UUID

string

Required

Body Parameters

None.

Response Information

Resource Description

Returns a the file information that matches the provided file id. HTTP status code 404 will be returned if no file is found matching the id specified

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-26T08:08:47.5652889-07:00",
  "folder": "sample string 7",
  "notes": "sample string 9",
  "dimensions": "sample string 10"
}