Skip to content

[Exploration] 답변 질문 없을 시, 최초 답변하러 가기

Jihyun247 edited this page Jan 14, 2021 · 5 revisions

최초 답변하러 가기

    GET /exploration/answer

Request Header

name type description required
token String 토큰 O

Response

name type description
status Int
success Boolean
message String
data Answer

Answer

name type description
id Int Answer의 id
created_at String 질문 생성 날짜
Question.id Int Question의 id
Question.title String 질문 제목

Sample1 (아직 답변 안한 질문이 한개일 때, 그 질문을 답변하러 가기)

{
    "status": 200,
    "success": true,
    "message": "답변해야 할 질문 가져오기 성공",
    "data": {
        "id": 104,
        "created_at": "2021-01-09T08:25:29.000Z",
        "Question.id": 2,
        "Question.title": "요즘 나를 웃게 만든 사람은 누구인가요?"
    }
}

Sample2 (아직 답변 안한 질문이 두개 이상일 땐, 오늘의 질문을 답변하러 가기)

{
    "status": 200,
    "success": true,
    "message": "답변해야 할 오늘 질문 가져오기 성공",
    "data": {
        "id": 228,
        "answer_idx": 1,
        "created_at": "2021-01-14T15:00:00.000Z",
        "Question.id": 19,
        "Question.title": "나에게 주는 최고의 포상은 무엇인가요?",
        "Question.Category.id": 1,
        "Question.Category.name": "가치관"
    }
}
Clone this wiki locally