Skip to content

[Follow] 답변 생성하기

jujube0 edited this page Jan 14, 2021 · 2 revisions

답변 없을 때 답변 생성하기 (등록 전)

  • 이미 해당 질문에 대한 답변이 있을 땐 이미 존재하는 답변 정보를 전달한다
    POST /answers/question

Request Header

name type description required
token String 토큰 O

Request Body

name type description required
question_id Int 질문의 id O

Sample

{
    "question_id": 5
}

Response

name type description
status Int
success Boolean
message String
data Answer 생성된 답변 정보

Answer

name type description
id Int 답변 id
answer_idx Int 카테고리의 몇 번째 질문인지
createdAt String 답변 생성 날짜
user_id Int 본인 id
question_id Int
question String 질문 내용
category String 카테고리
category_id Int 카테고리 id

Sample

{
    "status": 200,
    "success": true,
    "message": "답변 가져오기 성공",
    "data": {
        "id": 207,
        "answer_idx": 7,
        "createdAt": "2021. 1. 14",
        "user_id": 5,
        "question_id": 5,
        "question": "요즘 나를 웃게 만든 사람은 누구인가요?",
        "category": "관계",
        "category_id": 2
    }
}
{
    "status": 200,
    "success": true,
    "message": "답변 생성 성공",
    "data": {
        "id": 208,
        "answer_idx": 4,
        "createdAt": "2021. 1. 14",
        "user_id": 5,
        "question_id": 6,
        "question": "두려움을 극복해본 경험이 있나요? 어떤 상황이었나요?",
        "category": "이야기",
        "category_id": 6
    }
}
Clone this wiki locally