Stock types
GET /catalyst/stock_types
Returns the stock types for the event. A stock type is a kind of item within a category (e.g. a specific tent model).
URL:
https://api.eventication.com/catalyst/stock_types?page=1Page size: 200 objects per request
Fields per item:
idstock_category_id— references an item from stock_categoriesunit— one ofarticles,kg,lb,m,lshould_be_returned— whether leased items of this type must be returned to the stock (walkie-talkie) or not (screws)Localized names (dynamic):
name_<locale>— e.g.name_en,name_fr,name_nl
Locales are included when the corresponding database columns exist. This makes it forward-compatible when adding more languages later.
Example item:
{
"id": 10,
"stock_category_id": 1,
"unit": "articles",
"should_be_returned": true,
"name_en": "4-person tent",
"name_fr": "Tente 4 personnes",
"name_nl": "4-persoons tent"
}Response shape:
Last updated