Vote for an option
POST /api/2.0/community/event/{feedid}/vote
Request
Sends a vote for a certain option in a poll-type event with the ID specified in the request.
Note: If an event is not a poll, then you'll get an error.
Authorization
An API key is a token that you provide when making API calls. Include the token in a header parameter called Authorization
.
Example: Authorization: 864FE52C-1C1C-469F-9308-51DAFEFE7436
.
Headers
- Accept
enum of string
Can be one of:
application/json
.- Content-Type
enum of string
Can be one of:
application/json
.
Path
- feedid
integer
int32 Event ID
Body
- variants
array of integer
Options
Examples
POST /api/2.0/community/event/%7Bfeedid%7D/vote HTTP/1.1
Accept: application/json
Content-Type: application/json
Host: example.com
curl --request POST \
--url https://example.com/api/2.0/community/event/%7Bfeedid%7D/vote \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Responses
200
Event
- Text
string
- Poll
object
- PollType
enum of integer
int32 [0 - SimpleAnswer, 1 - MultipleAnswer]
Can be one of:
SimpleAnswer
,MultipleAnswer
.- EndDate
string
- StartDate
string
- Voted
boolean
- Votes
array of object
- Id
integer
int64 - Name
string
- Votes
integer
int32
- Id
integer
int64 - Title
string
- Created
string
- Updated
string
- Type
enum of integer
int32 [0 - None, 1 - News, 2 - Order, 4 - Advert, 7 - AllNews, 8 - Poll, 15 - All]
Can be one of:
None
,News
,Order
,Advert
,AllNews
,Poll
,All
.- CreatedBy
object
- Id
string
uuid - DisplayName
string
- Title
string
- AvatarSmall
string
- ProfileUrl
string
401
Unauthorized