This endpoint will allow you to update the answers to any question an attendee may be asked.

It accepts a JSON string with a key for questions. The value of the questions key must be an array. In each index of the array must be an object with a key and value for the question's id and the response.

  • For a multiple choice question, use the key option_id to specify the response
  • For a text field, use the key answer to specify the response

Example formatting:

"questions" : [ {"question_id" : 1, "answer" : "Test"}, {"question_id" : 2, "option_id" : 1}]
Language
Authorization
Header
Click Try It! to start a request and see the response here!