Attachments
Get data about attachments, given a list of bugs and/or attachment IDs. Private attachments will only be returned if you are in the appropriate group or if you are the submitter of the attachment.
Columns
| Name | Type | Description |
| Id [KEY] | Int | The numeric ID of the attachment. |
| FileName | String | The file name of the attachment. |
| Data | String | The raw data of the attachment, encoded as Base64. |
| Size | Int | The length (in bytes) of the attachment. |
| BugId | Int | The numeric ID of the bug that the attachment is attached to. |
| Summary | String | A short string describing the attachment. |
| CreationTime | Datetime | The time the attachment was created. |
| LastChangeTime | Datetime | The last time the attachment was modified. |
| ContentType | String | The MIME type of the attachment. |
| Creator | String | The login name of the user that created the attachment. |
| IsPrivate | Boolean | 'true' if the attachment is private (only visible to a certain group called the |
| IsObsolete | Boolean | 'true' if the attachment is obsolete, 'false' otherwise. |
| IsPatch | Boolean | 'true' if the attachment is a patch, 'false' otherwise. |