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 |
|
|
Category IDs |
|
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
-
categoriesis a comma-separated string of category IDs — invalid IDs are reported as non-fatal errors but valid ones are still applied -
status=1makes the product visible for the event (default);status=0hides it