-
Notifications
You must be signed in to change notification settings - Fork 1
문장조회
석영현 edited this page Jan 6, 2021
·
7 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /sentences | 문장 조회 |
Content-Type: application/json
{
"emotion" : 1,
"user" : 2
}
### 응답 바디
#### SUCCESS : 문장 성공(200)
```json
{
"message": "문장 전체 조회 성공",
"data": [
{
"id": 19,
"contents": "test_contents_18",
"writer": "test_writer_18",
"publisher": "test_publisher_18",
"emotionId": 1,
"createdAt": "2021-01-06T16:50:51.000Z",
"updatedAt": "2021-01-06T16:50:51.000Z"
},
{
"id": 24,
"contents": "test_contents_23",
"writer": "test_writer_23",
"publisher": "test_publisher_23",
"emotionId": 1,
"createdAt": "2021-01-06T16:50:51.000Z",
"updatedAt": "2021-01-06T16:50:51.000Z"
},
{
"id": 55,
"contents": "test_contents_54",
"writer": "test_writer_54",
"publisher": "test_publisher_54",
"emotionId": 1,
"createdAt": "2021-01-06T16:50:51.000Z",
"updatedAt": "2021-01-06T16:50:51.000Z"
}
]
}
{
"message": "필요한 값이 없습니다"
}
{
"message": "존재하지 않는 회원"
}
{
"message": "문장 조회 실패"
}