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

Stock categories

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

GET /catalyst/stock_categories

Returns the stock categories for the event. A stock category groups related stock types together.

  • URL: https://api.eventication.com/catalyst/stock_categories?page=1

  • Page size: 200 objects per request

  • Fields per item:

    • id

    • 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": 1,
  "name_en": "Tents",
  "name_fr": "Tentes",
  "name_nl": "Tenten"
}

Response shape:

Last updated