Authorization: ********************curl --location --request POST '/polls/session/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"question": "string",
"options": [
"string",
"string"
],
"allow_multiple_votes": true
}'{
"success": true,
"data": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"session_id": "1ffd059c-17ea-40a8-8aef-70fd0307db82",
"question": "string",
"status": "active",
"allow_multiple_votes": true,
"options": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"text": "string",
"vote_count": 0
}
],
"created_at": "2019-08-24T14:15:22.123Z",
"closed_at": "2019-08-24T14:15:22.123Z"
},
"timestamp": 0
}