GET Price/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
PriceView| Name | Description | Type | Additional 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"
  }
}
        application/xml, text/xml
            Sample:
<PriceView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PackageSite.Models.View">
  <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>