---
title: "List Saved Reports"
method: GET
path: "/print-mail/v1/reports"
tags: ["Reports"]
---

# List Saved Reports

`GET /print-mail/v1/reports`

Retrieve a list of saved reports for your organization.

## Query parameters

- `skip` integer
- `limit` integer
- `search` union
  - string
  - string — You can supply a structured search query instead of supplying unstructured text to any list endpoint help refine your search for a resource. For example, let's say you created a series of letters that all had `metadata: { campaignID: 'abc' }`. You could search for all those letters by passing in `{ "metadata.campaignID": "abc" }` into the `search` parameter. Note that this string must be valid JSON.

## Response `200`

A list of Report objects.

- ReportList — Represents a list of Reports.
  - `object` 'list', required
  - `totalCount` integer, required
  - `skip` integer, required
  - `limit` integer, required
  - `data` Report[], required
    - `id` string, required — Unique identifier for the report.
    - `object` 'report', required — Always `report`.
    - `live` boolean, required — Indicates if the report is associated with the live or test environment.
    - `sqlQuery` string, required — The SQL query defining the report.
    - `description` string — An optional user-friendly description for the report.
    - `metadata` object — Optional key-value metadata associated with the report.
    - `createdAt` string, date-time, required — Timestamp when the report was created.
    - `updatedAt` string, date-time, required — Timestamp when the report was last updated.

## Other responses

- `400` — A list of Report objects.
- `401` — A list of Report objects.
- `429` — A list of Report objects.
- `500` — A list of Report objects.

---

[API](https://skmtc.net/postgrid/apis/postgrid-print-mail-api.md) · [All operations](https://skmtc.net/postgrid/apis/postgrid-print-mail-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/postgrid/postgrid-print-mail-api/versions/6bb9d268c5d1/schema)
