Receipts

More Receipt-API information can be found here: REST API documentation - Receipts

Create receipt

To create a receipt that describes that goods are received, just use our API endpoints. To create a new receipt (new inbound process will be created):

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

or create a receipt for an already existing inbound process:

POST https://{YOUR_TENANT_NAME}.api.fulfillmenttools.com/api/inboundprocesses/{inboundProcessId}/receipts
{
    "facilityRef": "{YOUR_FACILITY_ID}",
    "receivedDate": "2023-06-16T07:44:14.944Z",
    "receivedItems": [
        {
            "tenantArticleId": "apples-01",
            "acceptedQuantity": {
                "value": 1,
                "unit": "kg"
            },
            "rejectedQuantity": {
                "value": 0,
                "unit": "kg"
            },
            "comments": [],
            "stockProperties": {
                "batch": "2023-08-14-a"
            }
        },
        {
            "tenantArticleId": "oranges-01",
            "acceptedQuantity": {
                "value": 16
            },
            "rejectedQuantity": {
                "value": 0
            },
            "comments": [],
            "stockProperties": {
                "batch": "123-abc"
            }
        }
    ],
    "comments": []
}

Last updated