Skip to main content
POST
/
cabinet
/
polls
/
{response_id}
/
start
Start Poll
curl --request POST \
  --url http://localhost:8080/cabinet/polls/{response_id}/start
{
  "response_id": 123,
  "current_question_index": 123,
  "total_questions": 123,
  "question": {
    "id": 123,
    "text": "<string>",
    "order": 123,
    "options": [
      {
        "id": 123,
        "text": "<string>",
        "order": 123
      }
    ]
  }
}

Path Parameters

response_id
integer
required

Response

Successful Response

Response when starting a poll.

response_id
integer
required
current_question_index
integer
required
total_questions
integer
required
question
PollQuestionResponse · object
required

Poll question with options.