Purchase order
The purchaseOrder is a sub-entity of the inboundProcess which maps all processes around incoming goods in a store or warehouse. Whenever a purchaseOrder is created, a corresponding inboundProcess is automatically created.
Create a purchaseOrder by executing the following POST call with the JSON body.
POST https://{YOUR_TENANT_NAME}.api.fulfillmenttools.com/api/purchaseorders{
"facilityRef": "CGN-01",
"orderDate": "2025-03-12T14:15:39.683Z",
"requestedDate": {
"type": "TIME_POINT",
"value": "2025-03-16T14:15:39.683Z"
},
"requestedItems": [
{
"quantity": {
"unit": "pieces",
"value": 100
},
"tenantArticleId": "22222"
}
],
"status": "OPEN",
"supplier": {
"name": "fulfillmenttools"
}
}A successful request returns a 201 CREATED response with the newly created purchaseOrder object in the body:
A purchaseOrder can also be created in the following ways:
Simultaneously with an inbound process: Include the
purchaseOrderdata when creating a newinboundProcess.
Adding to an existing inbound process: Add a
purchaseOrderto aninboundProcessthat has already been created.
Last updated
Was this helpful?

