> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getcollate.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Bulk Export Test Cases

> Learn to bulk export data quality test cases in Collate as CSV files, at the table, test suite, or platform-wide scope.

# Bulk Export Test Cases

Exporting test cases to a CSV file gives you a copy of your test case metadata to review offline, or a template you can edit and re-import. You can export test cases for a single table, for a test suite, or across your entire platform.

For more information about what each column in the file means, see the [CSV Field Reference](/how-to-guides/data-quality-observability/quality/import-export-test-cases).

## Bulk Export Test Cases for a Table

To export test cases scoped to a single table:

1. In the left navigation menu, click **Explore**, and select the table whose test cases you want to export.
2. Navigate to the **Data Observability** tab.
3. In the **Data Quality** tab, click **Test Cases** if not selected.
   <img src="https://mintcdn.com/collatedocs/pegD9dAsgJRGdvkc/public/images/how-to-guides/data-quality-observability/quality/table-test-cases.png?fit=max&auto=format&n=pegD9dAsgJRGdvkc&q=85&s=a113c3751899693747c905d214b7da24" alt="Access Table Test Cases" width="2528" height="1390" data-path="public/images/how-to-guides/data-quality-observability/quality/table-test-cases.png" />
4. Click the **⋮** icon and click **Export**.
   <img src="https://mintcdn.com/collatedocs/pegD9dAsgJRGdvkc/public/images/how-to-guides/data-quality-observability/quality/select-export-table.png?fit=max&auto=format&n=pegD9dAsgJRGdvkc&q=85&s=8d8c28a71b38228ce8a04423b5a6a801" alt="Export test cases for a single table" width="2448" height="646" data-path="public/images/how-to-guides/data-quality-observability/quality/select-export-table.png" />
5. In the export dialog, confirm the CSV format and start the export.
   <img src="https://mintcdn.com/collatedocs/7WgmkyHfAXlDe59i/public/images/how-to-guides/data-quality-observability/quality/confirm-export.png?fit=max&auto=format&n=7WgmkyHfAXlDe59i&q=85&s=3a85d70ef3d7e3a9160f260a19793646" alt="Confirm and start the export" width="1072" height="658" data-path="public/images/how-to-guides/data-quality-observability/quality/confirm-export.png" />
6. Collate generates the file in the background and downloads it once it's ready.

## Bulk Export Test Cases in a Suite

To export test cases scoped to a single test suite:

1. Navigate to **Data Observability** > **Data Quality**.
2. Click the **Test Suites** tab and switch to **Bundle Suites**.
   <img src="https://mintcdn.com/collatedocs/pegD9dAsgJRGdvkc/public/images/how-to-guides/data-quality-observability/quality/test-suites-test-cases.png?fit=max&auto=format&n=pegD9dAsgJRGdvkc&q=85&s=1455cebdbfd855f0f387d03f556886f6" alt="Select a bundle test suite" width="2996" height="1426" data-path="public/images/how-to-guides/data-quality-observability/quality/test-suites-test-cases.png" />
3. Search and select the bundle suite whose test cases you want to export.
4. Click the **⋮** icon and click **Export**.
   <img src="https://mintcdn.com/collatedocs/pegD9dAsgJRGdvkc/public/images/how-to-guides/data-quality-observability/quality/select-export-suite.png?fit=max&auto=format&n=pegD9dAsgJRGdvkc&q=85&s=ac5e82471ae05877ff8e034fe73c3c71" alt="Export test cases for a test suite" width="2486" height="1132" data-path="public/images/how-to-guides/data-quality-observability/quality/select-export-suite.png" />
5. Repeat steps 5 to 6 from [Bulk Export Test Cases for a Table](#bulk-export-test-cases-for-a-table).

## Bulk Export All Test Cases

To export test cases across your entire Collate instance:

1. Navigate to **Data Observability** > **Data Quality**, and click **Test Cases**.
   <img src="https://mintcdn.com/collatedocs/pegD9dAsgJRGdvkc/public/images/how-to-guides/data-quality-observability/quality/test-cases-tab.png?fit=max&auto=format&n=pegD9dAsgJRGdvkc&q=85&s=becbe01284ae7b76dc829b5f84c06c3a" alt="Test Cases Tab" width="2986" height="1382" data-path="public/images/how-to-guides/data-quality-observability/quality/test-cases-tab.png" />
2. Click the **⋮** icon and select **Export**.
   <img src="https://mintcdn.com/collatedocs/pegD9dAsgJRGdvkc/public/images/how-to-guides/data-quality-observability/quality/select-export-test-cases.png?fit=max&auto=format&n=pegD9dAsgJRGdvkc&q=85&s=3e4c33b015ef42cd1dd53946a1f77d52" alt="Export test cases platform-wide" width="2534" height="1302" data-path="public/images/how-to-guides/data-quality-observability/quality/select-export-test-cases.png" />
3. Repeat steps 5 to 6 from [Bulk Export Test Cases for a Table](#bulk-export-test-cases-for-a-table).

## Export Using API

You can also export test cases using the API with the following endpoints:

`GET /api/v1/dataQuality/testCases/name/{name}/export`

`GET /api/v1/dataQuality/testCases/name/{name}/exportAsync`

Replace `{name}` with the Fully Qualified Name (FQN) of the table or test suite you're exporting from, or with `*` to export every test case in the instance. The `exportAsync` endpoint runs the export as a background job and is what the UI uses; `export` returns the CSV synchronously.
