GET pricelists/{pricelistId}/prices/products

list all product specific prices of a pricelist

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pricelistId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of InitPro.Ida.Web.Api.Dto.V2.ProductCommonCharge
NameDescriptionTypeAdditional information
ProductId

integer

None.

CommonChargeId

Identifier of Common Charge

integer

None.

CommonChargeKey

Identifies a CommonCharge

string

Required

Name

Name of Common Charge Required for Update, Create Actions of Base CommonCharge Not Required for Update, Create Actions of Derived Objects ManufacturerBusinessunitCommonCharge, ProductCommonCharge

string

None.

PriceNet

The Price Required for Update, Create Actions

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProductId": 1,
    "CommonChargeId": 2,
    "CommonChargeKey": "sample string 3",
    "Name": "sample string 4",
    "PriceNet": 5.0
  },
  {
    "ProductId": 1,
    "CommonChargeId": 2,
    "CommonChargeKey": "sample string 3",
    "Name": "sample string 4",
    "PriceNet": 5.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfProductCommonCharge xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto.V2">
  <ProductCommonCharge>
    <CommonChargeId xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto">2</CommonChargeId>
    <CommonChargeKey xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto">sample string 3</CommonChargeKey>
    <Name xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto">sample string 4</Name>
    <PriceNet xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto">5</PriceNet>
    <ProductId>1</ProductId>
  </ProductCommonCharge>
  <ProductCommonCharge>
    <CommonChargeId xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto">2</CommonChargeId>
    <CommonChargeKey xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto">sample string 3</CommonChargeKey>
    <Name xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto">sample string 4</Name>
    <PriceNet xmlns="http://schemas.datacontract.org/2004/07/InitPro.Ida.Web.Api.Dto">5</PriceNet>
    <ProductId>1</ProductId>
  </ProductCommonCharge>
</ArrayOfProductCommonCharge>