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

Stock articles

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

GET /catalyst/stock_items

Returns the individual stock articles for the event. A stock item is one physical unit of a stock type (e.g. a specific tent with a serial number).

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

  • Page size: 200 objects per request

  • Fields per item:

    • id

    • name — name or description of this specific item

    • code — optional barcode / serial number

    • stock_type_id — references an item from stock_types

    • current_state — current physical condition: good, damaged, theft, dirty, or lost

    • amount — quantity (decimal)

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

Example item:

{
  "id": 101,
  "name": "4-person tent #12",
  "code": "T0012",
  "stock_type_id": 10,
  "current_state": "good",
  "amount": "1.0",
  "unit": "articles"
}

Response shape:

Last updated