Assets
Represents theme assets such as templates, images, and scripts. Note: Create, update, and delete operations are not accessible for public apps.
Columns
| Name | Type | ReadOnly | References | Description |
| Key [KEY] | String | False |
The file path of the asset within the theme directory structure. | |
| ThemeId [KEY] | Long | True |
Themes.Id |
A unique numeric identifier for the theme to which the asset belongs. |
| Attachment | String | False |
A Base64-encoded representation of the asset file, typically used for images or binary data. | |
| Checksum | String | True |
An MD5 hash string (32 hexadecimal digits) representing the asset's content. May be null if the asset has not been recently updated. | |
| ContentType | String | True |
The MIME type of the asset, specifying its content type and subtype (for example, text/css or image/png). | |
| CreatedAt | Datetime | True |
The date and time when the asset was initially created. | |
| PublicUrl | String | True |
The public URL where the asset can be accessed. | |
| Size | Int | True |
The file size of the asset in bytes. | |
| UpdatedAt | Datetime | True |
The date and time when the asset was last modified. | |
| Value | String | False |
The text-based content of the asset, such as HTML, CSS, JavaScript, or Liquid template code. |