GET api/{DataId}/customerdiscounts?CustomerId={CustomerId}
Vráti odberateľskú zľavu a zľavy na tovarové skupiny pre daného zákazníka
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
DataId |
Číslo dátového prostredia |
string |
Required |
CustomerId |
Oid (Guid) zákazníka |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomerDiscountsName | Description | Type | Additional information |
---|---|---|---|
CustomerId |
Interný databázový identifikátor zákazníka (Oid) |
globally unique identifier |
None. |
PercentualDiscount |
Odberateľská zľava v % |
decimal number |
None. |
Turnover |
Aktuálny obrat (podľa nastavenej kategórie obratovej zľavy) |
decimal number |
None. |
TurnoverDiscount |
Aktuálne percento obratovej zľavy na základe aktuálneho obratu |
decimal number |
None. |
PriceLevel |
Cenová hladina (0 = nenastavená) |
integer |
None. |
ProductGroupDiscounts |
Zoznam zliav zákazníka na tovarové skupiny |
Collection of ProductGroupDiscount |
None. |
Response Formats
application/json, text/json
Sample:
{ "CustomerId": "cc6e531d-69ad-42a6-8a6b-953df37e6633", "PercentualDiscount": 2.0, "Turnover": 3.0, "TurnoverDiscount": 4.0, "PriceLevel": 5, "ProductGroupDiscounts": [ { "ProductGroupId": "8e3e7448-dbbf-463a-9f6a-00d7ee11c1fe", "ProductId": "56e05069-6b1f-451a-b441-ce607ac6c138", "PercentualDiscount": 3.0 }, { "ProductGroupId": "8e3e7448-dbbf-463a-9f6a-00d7ee11c1fe", "ProductId": "56e05069-6b1f-451a-b441-ce607ac6c138", "PercentualDiscount": 3.0 } ] }
application/xml, text/xml
Sample:
<CustomerDiscounts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <CustomerId>cc6e531d-69ad-42a6-8a6b-953df37e6633</CustomerId> <PercentualDiscount>2</PercentualDiscount> <Turnover>3</Turnover> <TurnoverDiscount>4</TurnoverDiscount> <PriceLevel>5</PriceLevel> <ProductGroupDiscounts> <ProductGroupDiscount> <ProductGroupId>8e3e7448-dbbf-463a-9f6a-00d7ee11c1fe</ProductGroupId> <ProductId>56e05069-6b1f-451a-b441-ce607ac6c138</ProductId> <PercentualDiscount>3</PercentualDiscount> </ProductGroupDiscount> <ProductGroupDiscount> <ProductGroupId>8e3e7448-dbbf-463a-9f6a-00d7ee11c1fe</ProductGroupId> <ProductId>56e05069-6b1f-451a-b441-ce607ac6c138</ProductId> <PercentualDiscount>3</PercentualDiscount> </ProductGroupDiscount> </ProductGroupDiscounts> </CustomerDiscounts>