GET CommonCharges/GetManufacturerBusinessunit?manufacturerBusinessunitKey={manufacturerBusinessunitKey}

Get ManufacturerBusinessunit specific Common Charges

Request Information

URI Parameters

NameDescriptionTypeAdditional information
manufacturerBusinessunitKey

key that identifies the manufacturer businessunit mapping

string

Required

Body Parameters

None.

Response Information

Resource Description

a list of ManufacturerBusinessunit specific CommonCharge Objects

Collection of InitPro.Ida.Web.Api.Dto.ManufacturerBusinessunitCommonCharge
NameDescriptionTypeAdditional information
ManufacturerBusinessunitKey

Identifies a ManufacturerBusinessunit

string

Required

ManufacturerBusinessunitCommonChargeKey

Your Reference for Manufacturer Businessunit 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:
[
  {
    "ManufacturerBusinessunitKey": "sample string 1",
    "ManufacturerBusinessunitCommonChargeKey": "sample string 2",
    "CommonChargeId": 3,
    "CommonChargeKey": "sample string 4",
    "Name": "sample string 5",
    "PriceNet": 6.0
  },
  {
    "ManufacturerBusinessunitKey": "sample string 1",
    "ManufacturerBusinessunitCommonChargeKey": "sample string 2",
    "CommonChargeId": 3,
    "CommonChargeKey": "sample string 4",
    "Name": "sample string 5",
    "PriceNet": 6.0
  }
]

application/xml, text/xml

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