Participant Custom Field — Checkbox Group

Checkbox Group

A checkbox group field allows multiple selections from a predefined list of options.


Request

Bash
curl -X POST "https://your-event-domain.com/api/v2/account/set" \
  -H "Authorization: Bearer your_api_key_here" \
  -F "event_id=7" \
  -F "id=12345" \
  -F "interests=AI and Machine Learning||Sustainability||IoT"

Notes

  • Pass the field's system name as the parameter key (e.g. interests)

  • Separate multiple values with || (double pipe)

  • Each value must exactly match one of the configured options for that field

  • Passing new values replaces all existing selections — include every option the participant should have, not just the new ones