GET api/SalesReporting/AggregatedOrderedQuantity/SystemUser/{systemUserId}/FromDate/{fromDate}/ToDate/{toDate}

Get aggregated ordered quantity per product by system user (employee)

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "4d1e067a-9d19-4457-a036-09a7a1d78d4f",
    "ProductNumber": "sample string 2",
    "ProductName": "sample string 3",
    "GTIN": "sample string 4",
    "PackagingType": "sample string 5",
    "OrderedQuantity": 6.0
  },
  {
    "ProductId": "4d1e067a-9d19-4457-a036-09a7a1d78d4f",
    "ProductNumber": "sample string 2",
    "ProductName": "sample string 3",
    "GTIN": "sample string 4",
    "PackagingType": "sample string 5",
    "OrderedQuantity": 6.0
  }
]