# downloadAttachments

## Parameters

1. downloadOptions - JSON object
   * requestedIds - list of ids to download
   * fileName - (optional) name of the downloaded file

## Example Usages

```javascript
app.downloadAttachments({
  requestedIds: [196, 197, 200],
});
```

```javascript
app.downloadAttachments({
  requestedIds: [196, 197, 200],
  fileName: "myDownload.zip",
});
```

### Return Values

Function does not explicitly produce return value.
