GET Api/PurchaseOrder/GetOrdersTotal
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
SummaryPurchaseOrder| Name | Description | Type | Additional information |
|---|---|---|---|
| FinacialYear | string |
None. |
|
| Quarter | string |
None. |
|
| MonthYear | date |
None. |
|
| OrdersTotal | integer |
None. |
|
| OrdersAmount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"FinacialYear": "sample string 1",
"Quarter": "sample string 2",
"MonthYear": "2025-12-08T01:55:47.1113538+05:30",
"OrdersTotal": 4,
"OrdersAmount": 5.1
}
application/xml, text/xml
Sample:
<SummaryPurchaseOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Web.Api.ViewModel"> <FinacialYear>sample string 1</FinacialYear> <MonthYear>2025-12-08T01:55:47.1113538+05:30</MonthYear> <OrdersAmount>5.1</OrdersAmount> <OrdersTotal>4</OrdersTotal> <Quarter>sample string 2</Quarter> </SummaryPurchaseOrder>