GET api/productsfeature/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
features| Name | Description | Type | Additional information |
|---|---|---|---|
| colors | Collection of colors |
None. |
Response Formats
application/json, text/json
Sample:
{
"colors": [
{
"images": [
{
"path": "sample string 1"
},
{
"path": "sample string 1"
}
],
"name": "sample string 1",
"hex": "sample string 2",
"rgb": "sample string 3"
},
{
"images": [
{
"path": "sample string 1"
},
{
"path": "sample string 1"
}
],
"name": "sample string 1",
"hex": "sample string 2",
"rgb": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<features xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Taboo.Models">
<colors>
<colors>
<hex>sample string 2</hex>
<images>
<imgs>
<path>sample string 1</path>
</imgs>
<imgs>
<path>sample string 1</path>
</imgs>
</images>
<name>sample string 1</name>
<rgb>sample string 3</rgb>
</colors>
<colors>
<hex>sample string 2</hex>
<images>
<imgs>
<path>sample string 1</path>
</imgs>
<imgs>
<path>sample string 1</path>
</imgs>
</images>
<name>sample string 1</name>
<rgb>sample string 3</rgb>
</colors>
</colors>
</features>