This describes the product group resource in the Provet Dropship API.
| Name | Type | Description |
|---|---|---|
| Description | string | Description of the product group |
| LongDescription | string | A long HTML description of the product group |
| Teaser | string | A teaser description for the product group |
| Products | array of strings | List of product SKUs of products that are in this group |
GET ~/api/products/groups?page=1&pageSize=10
Returns a paginated list of product groups.
Sample response:
{
"items": [
{
"description": "Black Dog Head Halter",
"longDescription": "<p>Black Dog Head Halters help you to control your dog easily while minimising stress in your dog. The halter fits well on all dogs, including short-nosed breeds. The special design allows the halter to move as the dog moves, leaving the nose bridge strap to sit comfortably in the same position. This means it doesn't tend to ride up close to the dog's eyes and the dog is more content while wearing the halter.</p>\r\n<p>Available in Black, Blue, Green, Purple and Red in four sizes:</p>\r\n<ul>\r\n<li>Mini: Adjustable to fit neck from 20 to 35cm</li>\r\n<li>Small: Adjustable to fit neck from 27 to 37cm</li>\r\n<li>Medium: Adjustable to fit neck from 35 to 52cm</li>\r\n<li>Large: Adjustable to fit neck from 50 to 73cm</li>\r\n</ul>",
"teaser": "Black Dog Head Halters help you control a strong dog without causing it pain - it's like installing power steering on your dog.",
"products": [
"HALT L1",
"HALT L2",
"HALT L3",
"HALT L4",
"HALT L5",
"HALT M1",
"HALT M2",
"HALT M3",
"HALT M4",
"HALT M5",
"HALT MI1",
"HALT MI2",
"HALT MI3",
"HALT MI4",
"HALT MI5",
"HALT S1",
"HALT S2",
"HALT S3",
"HALT S4",
"HALT S5"
]
}
],
"pageNumber": 1,
"pageSize": 1,
"count": 1,
"totalCount": 635,
"pageCount": 635,
"isFirstPage": true,
"isLastPage": false,
"hasPreviousPage": false,
"hasNextPage": true
}