ProductCategory
A single product category.
More info: see the get operation and the product categories endpoint.
Fields
| Field | Description |
|---|---|
|
id
int
(required) |
Unique ID Example value:123 |
|
name
mlstring
(required) |
Name for the product category Example value:"serie" |
|
contactname
mlstring
(required) |
Name for the holder/owner of this product Example value:"holder" |
|
contactnameplural
mlstring
(required) |
Name for the holder/owner of this product in plural Example value:"holders" |
|
nameplural
mlstring
(required) |
Name for the product category in plural Example value:"series" |
|
isarchived
bool
(required) |
Whether or not this item is archived |
|
createdts
timestamp
(required) |
Created timestamp Example value:"2014-09-26 15:24:36" |
|
lastupdatets
timestamp
(required) |
Last updated timestamp Example value:"2014-09-26 15:24:36" |
Example
1{
2 "id": 123,
3 "name": "serie",
4 "contactname": "holder",
5 "contactnameplural": "holders",
6 "nameplural": "series",
7 "isarchived": false,
8 "createdts": "2014-09-26 15:24:36",
9 "lastupdatets": "2014-09-26 15:24:36"
10}