Files
This table contains a list of file objects.
Table Specific Information
Select
Query the Files table. The component will use the TSheets API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the component.
- Id and Name fields support the '=' and IN operators.
- Active field supports the '=' operator.
- LastModified field supports the <=,<,>=,>,= operators.
For example, the following queries are processed server side:
SELECT * FROM Files WHERE Name IN ('IMG_20181004_214839.png', 'healthy.jpg') SELECT * FROM Files WHERE LastModified = '2019-01-01 15:30' And Active = false
Columns
Name | Type | Description |
Id [KEY] | String | Id of this file. |
Name | String | Name of this file. |
UploadByUserId | Int | Id of the user that uploaded this file. |
Active | Boolean | If false, this file is considered deleted. |
Size | Int | Size of the file in bytes. |
Created | Datetime | Date/time when this customfield was created |
LastModified | Datetime | Date/time when this customfield was last modified. |
FileDescription | String | Description of this file. |
ImageRotation | Int | Original image orientation in degrees. Accepted values are: 0 (top), 90 (right), 180 (bottom), 270 (left). |