Delete an Item Receipt: item-receipts/{id}
Purpose
Permanently delete an item receipt from the system by its ID. This operation removes the entire receipt record, including all associated line-level receipt data. Unlike updating a receipt (which preserves the record with modified values), deletion permanently removes all traces of the item receipt. A successful request returns an empty response body, indicating the receipt has been removed. This operation is irreversible and should be used with caution, ensuring that no downstream processes depend on the receipt before proceeding.
Use Case
This endpoint is used to remove item receipt records that should no longer exist in the system. Common scenarios include deleting receipts that were recorded against the wrong purchase order, removing duplicate receipt entries created due to data entry errors, and purging test records created during system setup or integration testing. Warehouse managers and procurement administrators use this endpoint when a receipt was created in error and needs to be fully removed rather than corrected via an update. It is important to verify that no downstream processes — such as purchase invoice matching, inventory adjustments, or supplier payment reconciliation — depend on the receipt before deletion. Organizations should implement proper approval workflows before allowing receipt deletions to maintain procurement data integrity and audit trail completeness.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
| item_receipt_id | String | The unique ID of the item receipt to delete (e.g., IR-43327982) |
Query Parameters
No query parameters required.
Request Body
No request body required.
Response
A successful deletion returns no response body. The absence of an error indicates the item receipt has been permanently removed from the system.
Response
This endpoint does not return a response body. Upon successful execution, the account is deleted and an HTTP 204 No Content status code is returned.
