How to update an exhibitor's logo
Use this guide when you need to upload or replace the logo for an exhibitor.
⚠️ The logo is a global field. Updating the logo 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 — set logo via URL
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 "logo=https://example.com/logos/acme-logo.png"
Request — upload logo file
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 "logo=@/path/to/acme-logo.png"
Accepted image formats
-
image/png -
image/jpeg