Skip to content

문장조회

Chaewon Kim 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"
        }
    ]
}

FAIL : id값 OR emotion값 입력하지않은 경우(400)

{
    "message": "필요한 값이 없습니다"
}

FAIL : id값 오류(400)

{
    "message": "존재하지 않는 회원"
}

FAIL : 서버 내부 오류(500)

{
    "message": "문장 조회 실패"
}