Retrieves all the purchase orders

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

purchase_order
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
id2

Internal ID (numeric) automatically filled if empty

integer
jobs_id

Foreign key to Jobs

globally unique identifier

Optionally required : jobs_id, jobs_reference_back_office or jobs must be provided

supplier_company_id

Foreign key to company, contains the supplier

globally unique identifier
supplier_contact_id

globally unique identifier
user_id

Creator of the purchase order

globally unique identifier
description

Description of the purchase order

string

Max length: 4000

memo

Memo, remark

string
total_lines

Number of lines, automatically filled when adding/updating/deleting lines

integer
reference

string
date_create

Creation date

date
date_update

Last update date

date
date_delivery

Estimated date of delivery

date
confirmed_date_delivery

Date of the delivery

date
delivery_db_address_id

If Delivery and no picking, AddressID of the company (if not the main)

globally unique identifier
approved_by_user_id

If approval was needed, which user approves it

globally unique identifier
technical_user_id

User to contact if case of technical question about the purchase order

globally unique identifier
sent_by_email

boolean
sent_by_xml

boolean
purchase_order_status_id

Foreign key to purchase_order_status

globally unique identifier

Optionally required : purchase_order_status_id or purchase_order_status_code must be provided

po_status

string
article_stock_location_id

Stock location that will receive the articles

globally unique identifier
webshop_reference

string
is_pickup

If pickup, the technician will go himself to the supplier to take the goods

boolean
reference_back_office

Field used for Embedded entity (store there your ERP PK)

string

Max length: 50

modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "32c34e13-0d91-4d1b-a85b-4e16b4310ea0",
  "id2": 2,
  "jobs_id": "7cb1d1df-f907-409e-8879-cfba71c722e1",
  "supplier_company_id": "723529b5-5839-49bc-89cb-3f6d37d937e0",
  "supplier_contact_id": "ffa1c1eb-e711-4da1-96af-89914f86e214",
  "user_id": "c7be8fb6-f054-4746-8f8e-e226a4a8baee",
  "description": "sample string 7",
  "memo": "sample string 8",
  "total_lines": 9,
  "reference": "sample string 10",
  "date_create": "2026-01-11T21:00:34.8188029+00:00",
  "date_update": "2026-01-11T21:00:34.8188029+00:00",
  "date_delivery": "2026-01-11T21:00:34.8188029+00:00",
  "confirmed_date_delivery": "2026-01-11T21:00:34.8188029+00:00",
  "delivery_db_address_id": "85e47750-7371-43b2-bce6-c042687a71b4",
  "approved_by_user_id": "37e70d04-d4cd-447b-8b67-1d2123665489",
  "technical_user_id": "6be2951e-ea64-41e7-9f6d-9b2b461bc318",
  "sent_by_email": true,
  "sent_by_xml": true,
  "purchase_order_status_id": "8a83daf0-0aef-44dd-bc5e-a2143a495b42",
  "po_status": "sample string 21",
  "article_stock_location_id": "b7433eaa-61e4-4c5c-98ea-a1fdb430dad0",
  "webshop_reference": "sample string 23",
  "is_pickup": true,
  "reference_back_office": "sample string 25",
  "modified_dateutc": "2026-01-11T21:00:34.8188029+00:00"
}

application/xml, text/xml

Sample:
<purchase_order xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <approved_by_user_id>37e70d04-d4cd-447b-8b67-1d2123665489</approved_by_user_id>
  <article_stock_location_id>b7433eaa-61e4-4c5c-98ea-a1fdb430dad0</article_stock_location_id>
  <confirmed_date_delivery>2026-01-11T21:00:34.818Z</confirmed_date_delivery>
  <date_create>2026-01-11T21:00:34.818Z</date_create>
  <date_delivery>2026-01-11T21:00:34.818Z</date_delivery>
  <date_update>2026-01-11T21:00:34.818Z</date_update>
  <delivery_db_address_id>85e47750-7371-43b2-bce6-c042687a71b4</delivery_db_address_id>
  <description>sample string 7</description>
  <id>32c34e13-0d91-4d1b-a85b-4e16b4310ea0</id>
  <id2>2</id2>
  <is_pickup>true</is_pickup>
  <jobs_id>7cb1d1df-f907-409e-8879-cfba71c722e1</jobs_id>
  <memo>sample string 8</memo>
  <modified_dateutc>2026-01-11T21:00:34.818Z</modified_dateutc>
  <po_status>sample string 21</po_status>
  <purchase_order_status_id>8a83daf0-0aef-44dd-bc5e-a2143a495b42</purchase_order_status_id>
  <reference>sample string 10</reference>
  <reference_back_office>sample string 25</reference_back_office>
  <sent_by_email>true</sent_by_email>
  <sent_by_xml>true</sent_by_xml>
  <supplier_company_id>723529b5-5839-49bc-89cb-3f6d37d937e0</supplier_company_id>
  <supplier_contact_id>ffa1c1eb-e711-4da1-96af-89914f86e214</supplier_contact_id>
  <technical_user_id>6be2951e-ea64-41e7-9f6d-9b2b461bc318</technical_user_id>
  <total_lines>9</total_lines>
  <user_id>c7be8fb6-f054-4746-8f8e-e226a4a8baee</user_id>
  <webshop_reference>sample string 23</webshop_reference>
</purchase_order>