OpenIsle Docs
ApiPostsIdPollProgress

Poll progress

Get poll progress for a post

GET
/api/posts/{id}/poll/progress
AuthorizationBearer <token>

In: header

Path Parameters

idinteger
Formatint64

Response Body

curl -X GET "https://www.open-isle.com/api/posts/0/poll/progress"
{
  "options": [
    "string"
  ],
  "votes": {
    "property1": 0,
    "property2": 0
  },
  "endTime": "2019-08-24T14:15:22Z",
  "participants": [
    {
      "id": 0,
      "username": "string",
      "avatar": "string",
      "displayMedal": "COMMENT"
    }
  ],
  "optionParticipants": {
    "property1": [
      {
        "id": 0,
        "username": "string",
        "avatar": "string",
        "displayMedal": "COMMENT"
      }
    ],
    "property2": [
      {
        "id": 0,
        "username": "string",
        "avatar": "string",
        "displayMedal": "COMMENT"
      }
    ]
  },
  "multiple": true
}