How to set an exhibitor as a sponsor

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_popup is only applied when is_sponsor=true — it has no effect when sponsor status is false or not set