Filter Groups
This is used to view filter groups.
Filter Group Properties
| id |
{ "id" : 255 }
The unique ID of the filter group |
| title |
{ "title" : "Filter by colour" }
The name/title of the filter group |
| option |
{ "option" : 1 }
The option ID of the filter (price filters will return a option ID of 250) |
GET /v1/filter-groups
Returns all filter groups
GET /v1/filter-groups
HTTP/1.1 200 OK
[
{
"id": 255,
"title": "Filter by colour",
"option": 1
},
{
"id": 256,
"title": "Filter by price",
"option": 250
},
{
"id": 257,
"title": "Filter by size",
"option": 2
}
]