How to create a product

How to create a product

Use this guide when you need to create a new product for an exhibitor at an event.


What you'll need before starting

What you need

Where to get it

Exhibitor ID

GET /api/v2/exhibitor/getList or GET /api/v2/exhibitors/{eventId}/list

Category IDs

GET /api/v2/categories/get?event_id=


Request

Bash
curl -X POST "https://your-event-domain.com/api/v2/product/set" \
  -H "Authorization: Bearer your_api_key_here" \
  -F "event_id=7" \
  -F "exhibitor_id=42" \
  -F "name=Smart Sensor Pro" \
  -F "categories=12,34" \
  -F "description=A next-generation sensor designed for industrial use." \
  -F "status=1"

Notes

  • categories is a comma-separated string of category IDs — invalid IDs are reported as non-fatal errors but valid ones are still applied

  • status=1 makes the product visible for the event (default); status=0 hides it