---
title: "List in-process orders"
method: GET
path: "/orders"
tags: ["Orders"]
---

# List in-process orders

`GET /orders`

**Plan: All plans.**

Legacy endpoint kept for Zapier's auth check / new-order trigger. Returns a bare JSON
array (no pagination wrapper) of orders currently in process, newest first.

## Response `200`

OK

- Order[]
  - `id` string, uuid
  - `accountId` string, uuid
  - `orderNumber` string
  - `dueDate` string, date, nullable
  - `subtotal` number, nullable
  - `tax` number, nullable
  - `total` number, nullable
  - `taxName` string, nullable
  - `taxRate` number, nullable
  - `workflowState` string, nullable
  - `createdAt` string, date-time
  - `updatedAt` string, date-time
  - `canBeCompleted` boolean
  - `canBeIgnored` boolean
  - `completed` boolean
  - `ignored` boolean
  - `companyName` string, nullable
  - `createdById` string, uuid, nullable
  - `updatedById` string, uuid, nullable
  - `legacy` object
    - `id` string, uuid
  - `lineItems` object[]
    - `id` string, uuid
    - `lineNumber` integer, nullable
    - `position` integer
    - `name` string, nullable
    - `description` string, nullable
    - `quantity` number, nullable
    - `price` number, nullable
    - `totalPrice` number, nullable
    - `workflowState` string, nullable
    - `jobStale` boolean, nullable
    - `jobId` string, uuid, nullable
    - `productId` string, uuid, nullable
    - `job` object
      - `id` string, uuid
      - `workflowState` string, nullable

## Other responses

- `401` — Missing/expired credentials, an index request without a required filter, or the plan does not include this endpoint.

---

[API](https://skmtc.net/shopvox/apis/shopvox-public-api.md) · [All operations](https://skmtc.net/shopvox/apis/shopvox-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/shopvox/shopvox-public-api/revisions/7ac1ff5d444a/schema)
