Receipt
The receipt is a sub-entity of the inboundProcess, which maps all processes for incoming goods at a store or warehouse. Creating a receipt automatically creates a corresponding inboundProcess.
Create a receipt
To create a receipt, execute a POST request to the following endpoint with the JSON body.
POST https://{YOUR-TENANT-NAME}.api.fulfillmenttools.com/api/receipts
{
"facilityRef": "CGN-01",
"comments": [],
"receivedDate": "2025-03-16T14:15:39.683Z",
"receivedItems": [
{
"acceptedQuantity": {
"value": 100
},
"comments": [],
"rejectedQuantity": {
"value": 0
},
"storageLocationRef": "2f45a441-6247-4b7d-babe-83fca0ff4bf7",
"tenantArticleId": "22222"
}
],
"status": "OPEN"
}A successful request returns a 201 CREATED response with a body similar to the following example:
Alternative methods
A receipt can also be managed through the inboundprocesses endpoint in one of two ways:
Create a
receiptand itsinboundProcesssimultaneously viaPOST /api/inboundprocesses.Add a
receiptto an existinginboundProcessviaPUT /api/inboundprocesses/{inboundProcessId}/receipts.
Last updated