v1

latestOpenAPI 3.1.02026-08-066484183.6 MB
Purchase Orders

Get purchase orders

Lists purchase orders in the current account with pagination, filtering, sorting, and sparse fieldsets. Returns a JSON:API collection of purchase_orders resources.

get/api/v2/purchase_orders

Query parameters

sortstring[]

JSON:API sort query parameter for the purchase orders collection. Comma-separated list of sort keys — prefix with - for descending.

OR

JSON:API filter query parameter for the purchase orders collection. Accepts a nested object keyed by field name and operator (eq, not_eq, contains, not_contain, gt, lt, …).

{
  "id": {
    "eq": [
      1234567
    ]
  },
  "status_id": {
    "eq": [
      1
    ]
  },
  "issued_on": {
    "gt": "2026-01-01"
  }
}

Headers

X-Organization-Idstring required

Organization ID

Response

Paginated list of purchase orders in JSON:API format, with related vendor, deal, creator, document type, bill-to, bill-from, and attachment resources available via include.