Jotform API: How to send values for Multiple Choice field?

  • T
    Tiwa
    Asked on April 17, 2026 at 7:38 PM
    i would also like to ask how multiple option are separated when sending the values via API are they separated by ,?
  • Profile Image
    Keenly JotForm Support
    Replied on April 17, 2026 at 9:06 PM

    Hi Tiwa,

    Thanks for reaching out to Jotform Support. If you’d like to send values for a Multiple Choice field, you can do so using a POST request to the Jotform API. Check out the payload structure below:

    curl -X POST "https://api.jotform.com/form/FORM_ID/submissions?apiKey=API_KEY" \
     --data-urlencode "submission[Q_ID][]=Option 1" \
     --data-urlencode "submission[Q_ID][]=Option 3"

    You'll just need to replace the FORM_ID, API_KEY and Q_ID with actual values.

    Reach out again if you have any other questions.

Your Reply