For the complete documentation index, see llms.txt. This page is also available as Markdown.

Stock types

This endpoint requires the stock_types access to be enabled in the Catalyst integration settings.

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=1

  • Page size: 200 objects per request

  • Fields per item:

    • id

    • stock_category_id — references an item from stock_categories

    • unit — one of articles, kg, lb, m, l

    • should_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