GET QNA Answer

GET QNA Answer

GET https://api.cakes.com/qna/answer/:id

This endpoint allows you to get answers for question

Path Parameters

NameTypeDescription

id

string

question id for the answer

{    "data": {
       "QNA Answer List" : [{
          "answer_id": "answer_id",
          "user_id": "user_id",
          "question_id": "question id",
          "text": "text",
          "image_url": "image url",
          "video_url": "video url",
          "created_at": "date of QNA post created",
          "updated_at": "date of QNA post updated"
       }]
             }
}

Last updated