fictadvisor / fictadvisor-bot

Telegram bot for fictadvisor.com
11 stars 0 forks source link

Сreate an ability to take surveys in DM messages as in browser version of FICE Advisor #144

Open sifes opened 5 months ago

sifes commented 5 months ago

We need to create an ability to take surveys in DM messages as in browser version of FICT Advisor.

The functionality of polls:

To implement the described functionality, we would need endpoints:

Endpoint 1: /v2/poll/teachers/{userId} Add Telegram Guard

Endpoint 2: /v2/disciplineTeachers/{disciplineTeacherId}/questions Add Telegram Guard

Endpoint 3: /v2/disciplineTeachers/{disciplineTeacherId}/answers Need same endpoint with userId in body

{
  "userId" : "string", 
  "answers": [
    {
      "questionId": "string",
      "value": "string"    
    }
  ]
}