curl --request GET \
--url https://api.example.com/cabinet/polls/{response_id} \
--header 'Authorization: Bearer <token>'{
"id": 123,
"response_id": 123,
"title": "<string>",
"total_questions": 123,
"answered_questions": 123,
"is_completed": true,
"description": "<string>",
"reward_amount": 123
}Get details of a specific poll response.
curl --request GET \
--url https://api.example.com/cabinet/polls/{response_id} \
--header 'Authorization: Bearer <token>'{
"id": 123,
"response_id": 123,
"title": "<string>",
"total_questions": 123,
"answered_questions": 123,
"is_completed": true,
"description": "<string>",
"reward_amount": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.