GET api/ReportDailyStockGoodsReceived?DB={DB}&ReportDate={ReportDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DB | string |
Required |
|
| ReportDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StockLocData| Name | Description | Type | Additional information |
|---|---|---|---|
| StockName | string |
None. |
|
| CostPrice | decimal number |
None. |
|
| SellingPrice | decimal number |
None. |
|
| Quantity | decimal number |
None. |
|
| Value | decimal number |
None. |
|
| TotalCostValue | decimal number |
None. |
|
| TotalSaleValue | decimal number |
None. |
|
| Profit | decimal number |
None. |
|
| SupplierName | string |
None. |
|
| TransDate | date |
None. |
|
| DestinationName | string |
None. |
|
| SourceName | string |
None. |
|
| DocRefNo | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StockName": "sample string 1",
"CostPrice": 2.0,
"SellingPrice": 3.0,
"Quantity": 4.1,
"Value": 5.0,
"TotalCostValue": 6.0,
"TotalSaleValue": 7.0,
"Profit": 8.0,
"SupplierName": "sample string 9",
"TransDate": "2026-08-12T10:39:13.2113078+00:00",
"DestinationName": "sample string 11",
"SourceName": "sample string 12",
"DocRefNo": "sample string 13"
},
{
"StockName": "sample string 1",
"CostPrice": 2.0,
"SellingPrice": 3.0,
"Quantity": 4.1,
"Value": 5.0,
"TotalCostValue": 6.0,
"TotalSaleValue": 7.0,
"Profit": 8.0,
"SupplierName": "sample string 9",
"TransDate": "2026-08-12T10:39:13.2113078+00:00",
"DestinationName": "sample string 11",
"SourceName": "sample string 12",
"DocRefNo": "sample string 13"
}
]
application/xml, text/xml
Sample:
<ArrayOfStockLocData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
<StockLocData>
<CostPrice>2</CostPrice>
<DestinationName>sample string 11</DestinationName>
<DocRefNo>sample string 13</DocRefNo>
<Profit>8</Profit>
<Quantity>4.1</Quantity>
<SellingPrice>3</SellingPrice>
<SourceName>sample string 12</SourceName>
<StockName>sample string 1</StockName>
<SupplierName>sample string 9</SupplierName>
<TotalCostValue>6</TotalCostValue>
<TotalSaleValue>7</TotalSaleValue>
<TransDate>2026-08-12T10:39:13.2113078+00:00</TransDate>
<Value>5</Value>
</StockLocData>
<StockLocData>
<CostPrice>2</CostPrice>
<DestinationName>sample string 11</DestinationName>
<DocRefNo>sample string 13</DocRefNo>
<Profit>8</Profit>
<Quantity>4.1</Quantity>
<SellingPrice>3</SellingPrice>
<SourceName>sample string 12</SourceName>
<StockName>sample string 1</StockName>
<SupplierName>sample string 9</SupplierName>
<TotalCostValue>6</TotalCostValue>
<TotalSaleValue>7</TotalSaleValue>
<TransDate>2026-08-12T10:39:13.2113078+00:00</TransDate>
<Value>5</Value>
</StockLocData>
</ArrayOfStockLocData>