SpaceFiles
Query and delete space attachment files. The Id column is required for querying.
Select
The connector will use the Garoon API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the connector.
- Id supports the '=' operator and is required for querying.
For example, the following query is processed server side:
SELECT * FROM SpaceFiles WHERE Id = 3
Delete
Space attachment files can be deleted by providing the Id of the file.
DELETE FROM SpaceFiles WHERE Id = 3
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | String | True |
ID of the attachment file. |
| ContentType | String | True |
MIME type of the file. |
| Name | String | True |
Name of the file. |
| Size | Long | True |
Size of the file in bytes. |
| Content | String | True |
Base64-encoded content of the file. |