Name
(* = required)
|
Data Type | Description |
id
*
|
int |
customer id |
selectTop
|
int |
the first item to return from the sorted list; null = don't trim top |
selectBottom
|
int |
the last item to return from the sorted list; null = don't trim bottom |
rql
|
string |
see RQL documentation
|
sort
|
string |
see RQL documentation
|
classificationhead
|
string |
ItemClassificationId (integer value) |
kitInclusion
|
Customer.Models.KitInclusion |
default is 'either' |
| - Either | |
| - KitsOnly | |
| - NonKitsOnly | |
|
Type |
Description |
ResourceList |
IList<Customer.Models.ItemBrief>
|
|
ItemId |
int
|
|
Sku |
string
|
|
Description |
string
|
|
Deactivated |
bool
|
|
IsKit |
bool
|
|
Links |
IList<WebApi.Hal.Link>
|
|
|
-
/rels/customers/item
|
|
Sample accept: application/hal+json
{
"_embedded": {
"item": [
{
"itemId": 1,
"sku": "str",
"description": "str",
"deactivated": true,
"isKit": true
}
]
}
}