Project

General

Profile

Task #12217

Updated by Andrej Ondrejovic almost 2 years ago

https://devapi.qorpo.world/#/Voting 

 example body 
 ``` 
 { 
   "start_at": "2023-07-26T08:57:53.962Z", 
   "end_at": "2023-07-28T08:57:53.962Z", 
   "custom_order": 1, 
   "description": "onan pooool", 
   "public_vote": false, 
   "hidden_result": false, 
   "poll_style": "SINGLE", 
   "poll_eligibility": "OPEN", 
   "poll_evaluation": "FAIR", 
 "options": {"ccash": {"label": "Yes", "design": "colorful"}, "qorpo": {"label": "No", "design": "simple"}} 
 } 
 ``` 

 these values are static, so far 
 ``` 
   

   "public_vote": false, 
   "hidden_result": false, 
   "poll_style": "SINGLE", 
   "poll_eligibility": "OPEN", 
   "poll_evaluation": "FAIR", 
 ``` 

 ``` 
 "description": "onan pooool", 
 ``` 
 description is basically name of the pool shown on website 

 ``` yaml 
 "options": {"ccash": {"label": "Yes", "design": "colorful"}, "qorpo": {"label": "No", "design": "simple"}} 
 ``` 

 ccash key has to be lower case without spaces and special chars and is used for votes calculation 
 label is shown on website,

Back