How to update an exhibitor's basic info

How to update an exhibitor's basic info

Use this guide when you need to update an exhibitor's name, description, or other core profile fields.


⚠️ These fields are global. Company name, short name, fascia name, and description exist at the environment level. Updating any of these fields for an exhibitor in a specific event will trigger a cascade update in every other event this exhibitor is attached to within the same data environment.


Request

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 "name=Acme Corporation" \
  -F "short_name=Acme" \
  -F "about=Acme Corporation is a global leader in smart sensor technologies."

Notes

  • Include only the fields you want to change — all other fields are left as-is

  • You can identify the exhibitor by exhibitor_id, external_id, or username

  • name max length is 500 characters