githubEdit

Receipts

A receipt that describes that goods are received

The receipt is a sub-entity of the inboundProcess which maps all processes around incoming goods in a store or warehouse. Whenever a receipt is created, a corresponding inboundProcess is automatically created.

Create a receipt by executing the following POST call with the JSON body:

Create receipt

To create , use our API endpoints.

POST https://{YOUR_TENANT_NAME}.api.fulfillmenttools.com/api/receipts

Example request body:

request.json
{
  "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"
}
circle-info

If the request is successful, the API returns a 201 CREATED response with a body similar to the example below.

Alternatively, a receipt can be created simultaneously when creating the respective inboundProcess via:

or can be added to an existing inboundProcess via:

Last updated