SpaceAttachments
Query a list of attachments for a space.
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.
- SpaceId supports the '=' operator and is required for querying.
For example, the following query is processed server side:
SELECT * FROM SpaceAttachments WHERE SpaceId = 3
Columns
| Name | Type | Description |
| Id [KEY] | String | ID of the file. |
| SpaceId | String | ID of the space to retrieve attachments for. |
| Name | String | Name of the file. |
| Size | Long | Size of the file in bytes. |
| CreatedAt | Datetime | Creation date and time. |
| UpdatedAt | Datetime | Update date and time. |
| CreatorId | String | Creator's Garoon user ID. |
| CreatorCode | String | Creator's login name. |
| CreatorName | String | Creator's display name. |
| UpdaterId | String | Updater's Garoon user ID. |
| UpdaterCode | String | Updater's login name. |
| UpdaterName | String | Updater's display name. |