Nurama Developers

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

PropertyTypeRequiredDescription
assetIdstringyesUUID of the asset.
functionTypestringyesFile 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
}

On this page