How to create a parent exhibitor
Use this guide when you need to designate an exhibitor as the parent entity in a hierarchy — for example, a head office overseeing multiple branches, or a national pavilion grouping country exhibitors.
Parent exhibitor types
|
Type |
Parameters |
Use case |
|---|---|---|
|
Head office |
|
A company with multiple stands or branches |
|
Pavilion |
|
A national or themed pavilion grouping multiple exhibitors |
Request — mark as head office parent
Bash
curl -X POST "https://your-event-domain.com/api/v2/exhibitor/set" \
-H "Authorization: Bearer your_api_key_here" \
-F "event_id=7" \
-F "external_id=EXT-001" \
-F "is_parent_exhibitor=true"
Request — mark as pavilion
Bash
curl -X POST "https://your-event-domain.com/api/v2/exhibitor/set" \
-H "Authorization: Bearer your_api_key_here" \
-F "event_id=7" \
-F "external_id=EXT-001" \
-F "is_parent_exhibitor=true" \
-F "is_pavilion=true"
Next step
Once the parent exhibitor is created, assign child exhibitors to it — see the "How to assign child exhibitors to a parent" guide.
Notes
-
is_pavilion=trueonly takes effect whenis_parent_exhibitor=trueis also set -
An exhibitor cannot be both a parent and a child
-
Setting
is_parent_exhibitor=falseremoves the parent designation