GET Price?ProductId={ProductId}&OfferId={OfferId}&CurrencyId={CurrencyId}&Offset={Offset}&Limit={Limit}&Sort={Sort}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ProductId

integer

None.

OfferId

integer

None.

CurrencyId

integer

None.

Offset

integer

Range: inclusive between 0 and 2147483647

Limit

integer

Range: inclusive between 0 and 1500

Sort

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PriceView
NameDescriptionTypeAdditional information
PriceId

integer

None.

ProductId

integer

None.

Value

decimal number

None.

Border

integer

None.

CurrencyId

integer

None.

Currency

CurrencyView

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PriceId": 1,
    "ProductId": 2,
    "Value": 3.0,
    "Border": 4,
    "CurrencyId": 1,
    "Currency": {
      "CurrencyId": 1,
      "SourceCode": "sample string 2"
    }
  },
  {
    "PriceId": 1,
    "ProductId": 2,
    "Value": 3.0,
    "Border": 4,
    "CurrencyId": 1,
    "Currency": {
      "CurrencyId": 1,
      "SourceCode": "sample string 2"
    }
  }
]

application/xml, text/xml

Sample:
<ArrayOfPriceView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PackageSite.Models.View">
  <PriceView>
    <Border>4</Border>
    <Currency>
      <SourceCode>sample string 2</SourceCode>
      <CurrencyId>1</CurrencyId>
    </Currency>
    <CurrencyId>1</CurrencyId>
    <PriceId>1</PriceId>
    <ProductId>2</ProductId>
    <Value>3</Value>
  </PriceView>
  <PriceView>
    <Border>4</Border>
    <Currency>
      <SourceCode>sample string 2</SourceCode>
      <CurrencyId>1</CurrencyId>
    </Currency>
    <CurrencyId>1</CurrencyId>
    <PriceId>1</PriceId>
    <ProductId>2</ProductId>
    <Value>3</Value>
  </PriceView>
</ArrayOfPriceView>