---
title: "Queue an export of the orders list"
method: GET
path: "/shop/orders/queue"
tags: ["Orders"]
---

# Queue an export of the orders list

`GET /shop/orders/queue`

Queue a request to export the orders list

## Query parameters

- `query` string
- `customer_id` string, uuid
- `status` string
- `labels` string
- `item_offering_id` string
- `item_offering_type` 'appointment' | 'appointment_enquiry' | 'area_booking' | 'course' | 'hotel_room_reservation' | 'membership' | 'package' | 'product' | 'session' | 'table_reservation' | 'voucher' — Discriminator describing what kind of sellable item an `Offering` represents. The value determines which downstream schema (`Appointment`, `Session`, `Package`, etc.) the offering's `offering_id` resolves against, and which checkout/booking flow applies.
- `submitted_by_id` string
- `revenue_date_from` string, date
- `revenue_date_to` string, date
- `item_date` string, date
- `item_date_from` string, date-time
- `item_date_to` string, date-time
- `item_status` string
- `submitted_at_from` string, date-time
- `submitted_at_to` string, date-time
- `updated_at_from` string, date-time
- `updated_at_to` string, date-time
- `is_membership` boolean
- `has_outstanding_balance` boolean
- `sales_channel` string, object-id
- `external_id` string
- `site_id` string

## 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

- `401` — The user is unauthenticated

---

[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)
