Inbound process
Create an inbound process
An inboundProcess
maps all processes around incoming goods in a store or warehouse. The inbound process has the sub-entities purchaseOrder
and receipt
, which can be created and modified as part of the inbound process, or alternatively via their own endpoints. Whenever a purchaseOrder
or a receipt
is created, a corresponding inboundProcess
is automatically created.
Create an inboundProcess
by executing the following POST call with the JSON body:
POST https://{YOUR-TENANT-NAME}.fulfillmenttools.com/api/inboundprocesses
{
"facilityRef": "CGN-01",
"scannableCodes": ["12345"],
"tenantInboundProcessId": "AB-01"
}
If the request is successful, you receive a 201 CREATED
response with a body like this:
{
"created": "2025-03-12T14:15:39.683Z",
"facilityRef": "CGN-01",
"id": "d9f76e9f-6105-4286-b054-1bfbf8eebe77",
"lastModified": "2025-03-12T14:15:39.683Z",
"receipts": [],
"status": "OPEN",
"version": 1,
"tenantInboundProcessId": "AB-01",
"onHold": false,
"inboundDate": [],
"origin": [],
"scannableCodes": [
"12345"
],
"anonymized": false
}
Last updated