Posted Warehouse Receipts API
Overview
The WMS Posted Warehouse Receipts WH API is a Business Central API page designed to manage posted warehouse receipt data. This API allows external systems to interact with posted warehouse receipt records, providing functionality for reading receipt information.
API Details
- Publisher: smart
- API Group: wms
- API Version: v2.0
- Entity Name: postedWhseRcptWH
- Entity Set Name: postedWhseRcptsWH
- Source Table: SMA Posted Whse. Receipt WH
- ODataKeyFields: Entry No.
Fields
The following fields are exposed in the API:
| Field Name | Source Field | Required | Description |
|---|---|---|---|
EntryNo | SMA Posted Whse. Receipt WH."Entry No." | Yes | Unique identifier for the receipt entry. |
No | SMA Posted Whse. Receipt WH."No." | Yes | Document number of the receipt. |
DocumentStatus | SMA Posted Whse. Receipt WH."Document Status" | No | Status of the document. |
PostingDate | SMA Posted Whse. Receipt WH."Posting Date" | No | Date the receipt was posted. |
SourceDocument | SMA Posted Whse. Receipt WH."Source Document" | No | Source document associated with the receipt. |
SourceNo | SMA Posted Whse. Receipt WH."Source No." | No | Source number associated with the receipt. |
Example Usage
Retrieve a Posted Warehouse Receipt
GET host/instance/api/smart/wms/v2.0/companies(companyId)/postedWhseRcptsWH('EntryNo')
Example Response
{
"EntryNo": 1001,
"No": "PWR001",
"DocumentStatus": "Released",
"PostingDate": "2023-10-01",
"SourceDocument": "Sales Order",
"SourceNo": "SO001"
}