---
title: "Find purchase orders based on search parameters."
method: POST
path: "/api/purchase-orders/list"
tags: ["Purchase Order"]
---

# Find purchase orders based on search parameters.

`POST /api/purchase-orders/list`

## Query parameters

- `Sort.Field` string
- `Sort.Dir` 'ascending' | 'descending' — Specify sorting direction.
- `Skip` integer
- `Take` integer

## Request body

- PurchaseOrderRequestFindParameters — Parameters used for searching/finding purchase orders.
  - `numbers` integer[], nullable — Filter purchase orders to only given numbers
  - `status` 'draft' | 'needsApproval' | 'approved' | 'ordered' | 'paid' | 'cancelled' — Purchase order status
  - `receivingStatus` 'notReceived' | 'partiallyReceived' | 'received' — Purchase order receipt status
  - `externalReference` CommonExternalReferenceFindDto — Search parameter for identifier record(s) via their external identifiers.
    - `key` string, required — Specifies the group name (key) that this external reference originates from (e.g. an external application name)
    - `type` string, nullable — Arbitrary sub-key that can be used to qualify the value
    - `externalId` string, nullable — The external identifier
  - `includeReceiptData` boolean — If set to true, receipt data will be included in the results
  - `vendorId` string, nullable — The vendor id.
  - `orderDateFrom` string, date-time, nullable — Filter to purchase orders whose order date falls on or after this date. The whole day is included, so any time component is ignored.
  - `orderDateTo` string, date-time, nullable — Filter to purchase orders whose order date falls on or before this date. The whole day is included, so a purchase order ordered later that same day still matches.
  - `jobId` string, nullable — Filter to purchase orders associated with this job — associated with the order itself, allocated to one of its part line items, or carried by an outside-processing line item.

## Response `200`

List of purchase orders matching the filters

- PurchaseOrderListDto[]
  - `id` string, required — Unique id associated to this entity.
  - `number` integer, required — Number
  - `issueDate` string, date-time, nullable — PO creation date
  - `orderDate` string, date-time, nullable — PO order date (null until status set to Ordered)
  - `vendorId` string, required — Vendor Id
  - `type` 'standard' | 'outsideProcessing' | 'vendorCredit', required — Purchase order type
  - `status` 'draft' | 'needsApproval' | 'approved' | 'ordered' | 'paid' | 'cancelled', required — Purchase order status
  - `receivingStatus` 'notReceived' | 'partiallyReceived' | 'received', required — Purchase order receipt status
  - `expectedReceiveDate` string, date-time, nullable — PO Expected receipt date
  - `customFieldData` object, nullable — Custom Fields
  - `externalReferences` object, nullable — External references associated with this entity.
  - `currencyCode` string, nullable — Currency code/denomination associated to this vendor. If not provided, default to the primary currency code for the organization.
  - `vendorOrderNumber` string, nullable — The vendor's purchase order number
  - `vendorNote` string, nullable — The vendor note is a string property that represents a note provided to the vendor.

## Changes

- **2026-09-24** `d743ab8b105f` — 8 info
  - added the new optional request property `orderDateFrom` (media type: application/json-patch+json)
  - added the new optional request property `orderDateFrom` (media type: application/json)
  - added the new optional request property `orderDateFrom` (media type: text/json)
  - added the new optional request property `orderDateFrom` (media type: application/*+json)
  - …4 more
- **2026-09-11** `c00251431237` — 4 info
  - added the new optional request property `jobId` (media type: application/json-patch+json)
  - added the new optional request property `jobId` (media type: application/json)
  - added the new optional request property `jobId` (media type: text/json)
  - added the new optional request property `jobId` (media type: application/*+json)

[Change history](https://skmtc.dev/fulcrumpro/apis/fulcrum-publicapi/changes/api/purchase-orders/list/post.md)

---

[API](https://skmtc.dev/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.dev/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc.dev/fulcrumpro/apis/fulcrum-publicapi/revisions/df59e1af68d7?raw)
