VetChat/server-side

[FORM] Fetch Multiple Question List API

Closed this issue · 0 comments

Endpoint

POST /questions/question_set_ids

Request Body

{
  "question_set_ids": [
    0
  ]
}

Response

[
  {
    "symptom_id": 0,
    "symptom_name": "string",
    "question_id": 0,
    "question": "string",
    "pattern": "string",
    "image_path": "string",
    "ordinal": 0,
    "list_answer": [
      {
        "answer_id": 0,
        "answer": "string",
        "skip_to_question": 0
      }
    ]
  }
]