GET pricelists/{pricelistId}/prices

list all 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.CommonCharge
NameDescriptionTypeAdditional information
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:
[
  {
    "CommonChargeId": 1,
    "CommonChargeKey": "sample string 2",
    "Name": "sample string 3",
    "PriceNet": 4.0
  },
  {
    "CommonChargeId": 1,
    "CommonChargeKey": "sample string 2",
    "Name": "sample string 3",
    "PriceNet": 4.0
  }
]

application/xml, text/xml

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