PollSubmissions
A PollSubmission object looks like:
{
// The unique identifier for the poll submission.
"id": 1023,
// The unique identifier of the poll choice chosen for this submission.
"poll_choice_id": 155,
// the unique identifier of the user who submitted this poll submission.
"user_id": 4555,
// The date and time the poll submission was submitted.
"created_at": "2013-11-07T13:16:18Z"
}Get a single poll submission
GET /api/v1/polls/:poll_id/poll_sessions/:poll_session_id/poll_submissions/:id
Example Response:
Create a single poll submission
POST /api/v1/polls/:poll_id/poll_sessions/:poll_session_id/poll_submissions
Request Parameters:
Parameter
Type
Description
Example Response:
Last updated
Was this helpful?