Paged list of the supplier's orders, newest first, with a reduced projection of each order and its lines (Order_Items carry id, item_no, qty, note and the item's id, name, sku).
API key and secret only. Requests without x-apiKey / x-apiSecret are rejected with a plain-text 400.
Security
ApiKey and ApiSecret
- Mock serverhttps://docs.orderwerks.com/_mock/openapi/v1/orders
- Productionhttps://owapi.orderwerks.com/v1/orders
curl -i -X GET \
'https://docs.orderwerks.com/_mock/openapi/v1/orders?limit=25&offset=0&from_updated_at=2026-09-01%2000%3A00%3A00&name=string&guid=497f6eca-6276-4993-bfeb-53cbbbba6f08' \
-H 'x-apiKey: YOUR_API_KEY_HERE' \
-H 'x-apiSecret: YOUR_API_KEY_HERE'Response
{ "orders": [ { "id": 0, "guid": "ee6a7af7-650d-499b-8e32-58a52ffdb7bc", "name": "string", "api_guid": "string", "supplier_id": 0, "vendor_id": 0, "user_id": 0, "catalog_id": 0, "price_group_id": 0, "category_id": 0, "parent_order_id": 0, "client_id": 0, "project_id": 0, "sales_rep_id": 0, "ship_to_id": 0, "order_state_id": 0, "order_source_id": 0, "po_no": "string", "invoice_no": "string", "description": "string", "note": "string", "internal_note": "string", "shipping_instructions": "string", "is_quote": true, "is_sample": true, "is_local_pickup": true, "is_local_delivery": true, "is_shipped": true, "partially_shipped": true, "is_on_hold": true, "is_cancelled": true, "sub_total": 0, "tax": 0, "shipping": 0, "labor": 0, "discount": 0, "discount_total": 0, "other": 0, "grand_total": 0, "delivery_date": "string", "ship_date": "string", "do_not_ship_before_date": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "Order_Items": [ … ], "Ship_To": { … }, "Vendor": { … }, "Catalog": { … }, "Price_Group": { … }, "Category": { … }, "Order_State": { … }, "User": { … }, "Supplier": { … }, "Client": { … }, "Parent_Order": { … }, "Order_Detail": {}, "Order_State_Logs": [ … ], "Assigned_Users": [ … ] } ], "count": 0 }