GET api/Products?ProductID={ProductID}&Lang2={Lang2}
Request the details of 1 product
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductID |
The ProductID of the product |
integer |
Required |
| Lang2 |
The language in which the product details need to be, |
string |
Default value is EN |
Body Parameters
None.
Response Information
Resource Description
A ProductDetails
ProductDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductID |
Unique ID of this product |
integer |
None. |
| ProductDescription |
The name / description |
string |
None. |
| ProductCode |
The product code that the market / industry uses |
string |
None. |
| ProductDescriptionSearch |
For search and SEO: the keywords / tags / etc. that are related to this product |
string |
None. |
| PictureGroup |
The name of the picture group related to the product details |
string |
None. |
| Length | decimal number |
None. |
|
| Width | decimal number |
None. |
|
| Height | decimal number |
None. |
|
| Volume | decimal number |
None. |
|
| Weigth | decimal number |
None. |
|
| Manufacturer |
The name of the (original) Manufacturer of this product |
string |
None. |
| ManufacturerProductCode |
The product code that the (original) Manufacturer uses for this product |
string |
None. |
| ManufacturerProductDescription |
The product description that the (original) Manufacturer uses for this product |
string |
None. |
| ManufacturerProductUrl |
The url to the product page of the (original) Manufacturer |
string |
None. |
| DescriptionLong |
This is the long description, or the short story about this product. |
string |
None. |
| Stock |
The number of items in stock of this item |
decimal number |
None. |
| DepositDescription |
This is the description of the deposit. |
string |
None. |
| DepositAmount |
The price of this deposit. |
decimal number |
None. |
Response Formats
application/json, text/json
{
"ProductID": 1,
"ProductDescription": "sample string 2",
"ProductCode": "sample string 3",
"ProductDescriptionSearch": "sample string 4",
"PictureGroup": "sample string 5",
"Length": 6.0,
"Width": 7.0,
"Height": 8.0,
"Volume": 9.0,
"Weigth": 10.0,
"Manufacturer": "sample string 11",
"ManufacturerProductCode": "sample string 12",
"ManufacturerProductDescription": "sample string 13",
"ManufacturerProductUrl": "sample string 14",
"DescriptionLong": "sample string 15",
"Stock": 16.0,
"DepositDescription": "sample string 17",
"DepositAmount": 18.0
}
application/xml, text/xml
<ProductDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATRonicLayer.BO"> <DepositAmount>18</DepositAmount> <DepositDescription>sample string 17</DepositDescription> <DescriptionLong>sample string 15</DescriptionLong> <Height>8</Height> <Length>6</Length> <Manufacturer>sample string 11</Manufacturer> <ManufacturerProductCode>sample string 12</ManufacturerProductCode> <ManufacturerProductDescription>sample string 13</ManufacturerProductDescription> <ManufacturerProductUrl>sample string 14</ManufacturerProductUrl> <PictureGroup>sample string 5</PictureGroup> <ProductCode>sample string 3</ProductCode> <ProductDescription>sample string 2</ProductDescription> <ProductDescriptionSearch>sample string 4</ProductDescriptionSearch> <ProductID>1</ProductID> <Stock>16</Stock> <Volume>9</Volume> <Weigth>10</Weigth> <Width>7</Width> </ProductDetails>