GET CommonCharges/GetProduct?productArticleNumber={productArticleNumber}

Get Product specific Common Charge

Request Information

URI Parameters

NameDescriptionTypeAdditional information
productArticleNumber

your product article number

string

Required

Body Parameters

None.

Response Information

Resource Description

a list of Product specific CommonCharge Objects

Collection of InitPro.Ida.Web.Api.Dto.ProductCommonCharge
NameDescriptionTypeAdditional information
ProductArticleNumber

Identifies a Product

string

Required

ProductCommonChargeKey

Your Reference for Product specific CommonCharge - not mandatory

string

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:
[
  {
    "ProductArticleNumber": "sample string 1",
    "ProductCommonChargeKey": "sample string 2",
    "CommonChargeId": 3,
    "CommonChargeKey": "sample string 4",
    "Name": "sample string 5",
    "PriceNet": 6.0
  },
  {
    "ProductArticleNumber": "sample string 1",
    "ProductCommonChargeKey": "sample string 2",
    "CommonChargeId": 3,
    "CommonChargeKey": "sample string 4",
    "Name": "sample string 5",
    "PriceNet": 6.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">
  <ProductCommonCharge>
    <CommonChargeId>3</CommonChargeId>
    <CommonChargeKey>sample string 4</CommonChargeKey>
    <Name>sample string 5</Name>
    <PriceNet>6</PriceNet>
    <ProductArticleNumber>sample string 1</ProductArticleNumber>
    <ProductCommonChargeKey>sample string 2</ProductCommonChargeKey>
  </ProductCommonCharge>
  <ProductCommonCharge>
    <CommonChargeId>3</CommonChargeId>
    <CommonChargeKey>sample string 4</CommonChargeKey>
    <Name>sample string 5</Name>
    <PriceNet>6</PriceNet>
    <ProductArticleNumber>sample string 1</ProductArticleNumber>
    <ProductCommonChargeKey>sample string 2</ProductCommonChargeKey>
  </ProductCommonCharge>
</ArrayOfProductCommonCharge>