GET api/Product/GroupsFiltered?SupplierID={SupplierID}&filter={filter}
Get the product groups by supplier and filter.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SupplierID |
The supplier identifier. |
integer |
Required |
| filter |
The filter. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Group| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
Group System ID |
integer |
None. |
| Name |
Group name |
string |
None. |
| Filter |
Filter |
string |
None. |
| FileID |
File System ID. |
string |
None. |
| Filename |
The filename. |
string |
None. |
| FileUrl |
File URL. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Name": "sample string 2",
"Filter": "sample string 3",
"FileID": "sample string 4",
"Filename": "sample string 5",
"FileUrl": "sample string 6"
},
{
"ID": 1,
"Name": "sample string 2",
"Filter": "sample string 3",
"FileID": "sample string 4",
"Filename": "sample string 5",
"FileUrl": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DecorDepot.API.Models">
<Group>
<FileID>sample string 4</FileID>
<FileUrl>sample string 6</FileUrl>
<Filename>sample string 5</Filename>
<Filter>sample string 3</Filter>
<ID>1</ID>
<Name>sample string 2</Name>
</Group>
<Group>
<FileID>sample string 4</FileID>
<FileUrl>sample string 6</FileUrl>
<Filename>sample string 5</Filename>
<Filter>sample string 3</Filter>
<ID>1</ID>
<Name>sample string 2</Name>
</Group>
</ArrayOfGroup>