---
title: "Queue an export of the cancellations and no-shows report"
method: GET
path: "/shop/reports/cancellations-and-no-shows/queue"
tags: ["Reports"]
---

# Queue an export of the cancellations and no-shows report

`GET /shop/reports/cancellations-and-no-shows/queue`

Queues a CSV export of the cancellations and no-shows report so it can be generated
asynchronously. The report is run on a background worker and, when `email=true`, is
delivered to the calling user once ready. Use this instead of the synchronous endpoint
when the date range spans more than a few months.

See [`/shop/reports/cancellations-and-no-shows`](/endpoints/Reports#listCancellationsAndNoShows)
for the synchronous variant.

## Query parameters

- `site_id` string, uuid, required
- `revenue_date_from` string, date, required
- `revenue_date_to` string, date, required
- `email` boolean

## Response `200`

The job was successfully queued

- object
  - `data` QueuedJob, required
    - `id` string, uuid, required — The ID of the queued job.
    - `status` 'pending' | 'complete' | 'failed', required — The status of the queued job.
    - `output` object, required — The output of the queued job.
    - `created_at` string, date-time, required — The date and time the queued job was created.
    - `updated_at` string, date-time, required — The date and time the queued job was last updated.

## Other responses

- `400` — The request failed.

---

[API](https://skmtc.dev/try/apis/trybe-api.md) · [All operations](https://skmtc.dev/try/apis/trybe-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/try/trybe-api/revisions/f37f92702da5/schema)
