How to update an exhibitor's video

How to update an exhibitor's video

Use this guide when you need to set or update the embedded video on an exhibitor's profile.


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 "exhibitor_id=1200" \
  -F "video=<iframe src='https://www.youtube.com/embed/dQw4w9WgXcQ'></iframe>" \
  -F "video_type=embed"

Notes

  • video accepts an embed code (e.g. a YouTube or Vimeo <iframe> snippet), not a plain URL

  • video_type must be set to embed

  • To remove the video, pass an empty video value

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