> For the complete documentation index, see [llms.txt](https://docs.imerit.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.imerit.net/plugins/first-party-ango-plugins/issue-export.md).

# Issue Export

## Overview

The Issue Export plugin is an export plugin that downloads issue data from a project as CSV reports.

Use this plugin when you need to audit open and resolved issues, review issue status by task or creator, or analyze issue error types and error codes outside Ango Hub.

<table data-card-size="large" data-view="cards"><thead><tr><th align="center"></th><th data-hidden data-card-cover data-type="image">Cover image</th></tr></thead><tbody><tr><td align="center">Issue Export</td><td data-object-fit="contain"><a href="/files/CHgcYRtHkbqTmmpTAtob">/files/CHgcYRtHkbqTmmpTAtob</a></td></tr></tbody></table>

## Plugin Functionality

The Issue Export plugin creates a ZIP file containing multiple CSV files.

The export includes:

**\[Issue] File**

Contains one row per issue, including the issue ID, issue link, task, asset, stage, creator, status, class name, error type, error code, content, comments, and position or page information when available.

**\[Asset] File**

Aggregates issue counts by task and asset.

**\[Created By] File**

Aggregates issue counts by the user who created the issue.

**\[Created To] File**

Aggregates issue counts by assignee when assignee information is enabled and available.

**\[Overview] File**

Summarizes issue totals by status, error type, and error code.

## Plugin Configuration

From the **Stage Filter** field, pick the stages containing the tasks whose issues you'd like to export. Similarly, from the **Batch Filter** field, you may select one or more batches. By default, all tasks are exported from all batches.

If you wish to receive an email when the export is complete, toggle **Send Email** on.

You may vary a number of settings related to your export from the **Config JSON** field. Each option is detailed below:

```json
{
  "mode": "default",
  "add_assignee_info": true,
  "logging_frequency": 0
}
```

* **"mode":** Defines the export mode. The default mode exports general Ango Hub issue reports.
  * Example:
    * <kbd>"mode": "default"</kbd>

* **"add\_assignee\_info":** When `true`, the plugin includes assignee-based issue reporting where the data is available.
  * Example:
    * <kbd>"add\_assignee\_info": true</kbd>
    * <kbd>"add\_assignee\_info": false</kbd>

* **"logging\_frequency":** Defines how frequently progress logs are displayed; setting this value to 0 disables progress-frequency logging.
  * Example:
    * <kbd>"logging\_frequency": 0</kbd>
    * <kbd>"logging\_frequency": 100</kbd>
