GET api/Article?brand={brand}&article={article}&apikey={apikey}&language={language}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| brand | string |
Required |
|
| article | string |
Required |
|
| apikey | string |
Required |
|
| language | string |
Default value is fr |
Body Parameters
None.
Response Information
Resource Description
Product| Name | Description | Type | Additional information |
|---|---|---|---|
| ArtRef | string |
None. |
|
| Maker | string |
None. |
|
| Price | decimal number |
None. |
|
| SalePrice | decimal number |
None. |
|
| Description | string |
None. |
|
| Stock | decimal number |
None. |
|
| Ean | string |
None. |
|
| RefAPL | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ArtRef": "sample string 1",
"Maker": "sample string 2",
"Price": 3.1,
"SalePrice": 4.1,
"Description": "sample string 5",
"Stock": 6.1,
"Ean": "sample string 7",
"RefAPL": "sample string 8"
}
application/xml, text/xml
Sample:
<Product xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APLWebService.Models"> <ArtRef>sample string 1</ArtRef> <Description>sample string 5</Description> <Ean>sample string 7</Ean> <Maker>sample string 2</Maker> <Price>3.1</Price> <RefAPL>sample string 8</RefAPL> <SalePrice>4.1</SalePrice> <Stock>6.1</Stock> </Product>