GET api/GeteWMSWarehouseInboundReport?token={token}&DateFrom={DateFrom}&DateTo={DateTo}
Returns Warehouse Inbound Report
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
Token |
string |
Required |
| DateFrom | date |
Required |
|
| DateTo | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns an oject with inbound lines, "IsSuccess" boolean, and "Message" string.
InboundReportResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| ResultList | Collection of InboundReportLines |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Message": "sample string 2",
"ResultList": [
{
"Program": "sample string 1",
"Warehouse": "sample string 2",
"ReceivedOn": "2026-05-14T03:50:07.9401452-04:00",
"ReceiptId": "sample string 4",
"Project": "sample string 5",
"LineNumber": "sample string 6",
"ItemId": "sample string 7",
"PartNumber": "sample string 8",
"Description": "sample string 9",
"QuantityReceived": 1,
"UOM": "sample string 10",
"UnitPrice": "sample string 11",
"TotalPrice": "sample string 12",
"Location": "sample string 13",
"ReceivedBy": "sample string 14",
"InventoryType": "sample string 15"
},
{
"Program": "sample string 1",
"Warehouse": "sample string 2",
"ReceivedOn": "2026-05-14T03:50:07.9401452-04:00",
"ReceiptId": "sample string 4",
"Project": "sample string 5",
"LineNumber": "sample string 6",
"ItemId": "sample string 7",
"PartNumber": "sample string 8",
"Description": "sample string 9",
"QuantityReceived": 1,
"UOM": "sample string 10",
"UnitPrice": "sample string 11",
"TotalPrice": "sample string 12",
"Location": "sample string 13",
"ReceivedBy": "sample string 14",
"InventoryType": "sample string 15"
}
]
}
