CardAttachments
Lists all the attachments of each card.
Table-Specific Information
Select
The 本製品 pushes supported filters in the WHERE clause to the Trello API. Remaining filters are applied client-side in the driver. For example, the following query is processed server-side:
SELECT * FROM CardAttachments WHERE BoardId = '5835594ee003411c6abdbfbd'
Delete
Use DELETE statements to remove records from this table.
DELETE FROM CardAttachments WHERE CardID = '670d41afce1e4002e667628f' AND AttachmentID = '670e6b96fb24aa10c2aea420';
Columns
| Name | Type | ReadOnly | Description |
| CardID [KEY] | String | True |
The Id of the Card. |
| AttachmentId [KEY] | String | True |
The Id of the Attachment. |
| Name | String | True |
Filename of the Attachment. |
| BoardID | String | True |
The Id of the Board referencing the card with attachment. |