-
Notifications
You must be signed in to change notification settings - Fork 1
[Exploration] 답변 질문 없을 시, 최초 답변하러 가기
Jihyun247 edited this page Jan 14, 2021
·
5 revisions
GET /exploration/answer
name | type | description | required |
---|---|---|---|
token | String | 토큰 | O |
name | type | description |
---|---|---|
status | Int | |
success | Boolean | |
message | String | |
data | Answer |
name | type | description |
---|---|---|
id | Int | Answer의 id |
created_at | String | 질문 생성 날짜 |
Question.id | Int | Question의 id |
Question.title | String | 질문 제목 |
{
"status": 200,
"success": true,
"message": "답변해야 할 질문 가져오기 성공",
"data": {
"id": 104,
"created_at": "2021-01-09T08:25:29.000Z",
"Question.id": 2,
"Question.title": "요즘 나를 웃게 만든 사람은 누구인가요?"
}
}
{
"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": "가치관"
}
}