GET api/SalesReporting/AggregatedOrderedQuantity/SystemUser/{systemUserId}/FromDate/{fromDate}/ToDate/{toDate}
Get aggregated ordered quantity per product by system user (employee)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| systemUserId | globally unique identifier |
Required |
|
| fromDate |
Format: YYYY-MM-DD |
date |
Required |
| toDate |
Format: YYYY-MM-DD |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AggregatedProductsOrderedQuantityView| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductId | globally unique identifier |
None. |
|
| ProductNumber | string |
None. |
|
| ProductName | string |
None. |
|
| GTIN | string |
None. |
|
| PackagingType | string |
None. |
|
| OrderedQuantity | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ProductId": "997617e1-5cff-44b3-812d-2e728bee1528",
"ProductNumber": "sample string 2",
"ProductName": "sample string 3",
"GTIN": "sample string 4",
"PackagingType": "sample string 5",
"OrderedQuantity": 6.0
},
{
"ProductId": "997617e1-5cff-44b3-812d-2e728bee1528",
"ProductNumber": "sample string 2",
"ProductName": "sample string 3",
"GTIN": "sample string 4",
"PackagingType": "sample string 5",
"OrderedQuantity": 6.0
}
]