How to set an exhibitor as a sponsor
Use this guide when you need to flag an exhibitor as a sponsor for an event — optionally enabling the sponsor popup.
Request — mark as sponsor
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_sponsor=true" \
-F "sponsor_popup=true"
Request — remove sponsor status
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_sponsor=false"
Notes
-
sponsor_popupis only applied whenis_sponsor=true— it has no effect when sponsor status is false or not set