get_asset_files
Get the file records of one functionType for an asset (e.g.
Read-only tool.
Get the file records of one functionType for an asset (e.g. thumbnail, original, media, transcode-*). Use this to discover the storage path and signed URLs needed to link to or download an asset variant. Different functionTypes return different file shapes.
Input
| Property | Type | Required | Description |
|---|---|---|---|
assetId | string | yes | UUID of the asset. |
functionType | string | yes | File function type — typically thumbnail, original, or media. Asset-type-specific values exist too. |
JSON Schema
{
"type": "object",
"properties": {
"assetId": {
"type": "string",
"description": "UUID of the asset."
},
"functionType": {
"type": "string",
"description": "File function type — typically `thumbnail`, `original`, or `media`. Asset-type-specific values exist too."
}
},
"required": [
"assetId",
"functionType"
],
"additionalProperties": false
}