Skip to content

[POST] 카테고리 생성

olccihyeon edited this page Jul 14, 2021 · 5 revisions
메소드 경로 설명
POST /categories 카테고리 생성

Request Header

{
        "x-auth-token": "eyJhbGciOiJIUzI1NiIsInR5cCI6Ikp"
}

Request body

{
    "name" : "인간",
}

Respond Body / status :201

{
    "success": true,
    "data": {
        "category": [
            {
                "_id": "60ed480fbdb0953390d1ae5e",
                "name": "인간",
                "index": 0,
                "count": 0,
                "img": "https://soptseminar5test.s3.ap-northeast-2.amazonaws.com/0-0.png",
                "created_date": "2021-07-13T17:00:15.210Z"
            },
            {
                "_id": "60ed480fbdb0953390d1ae60",
                "name": "학업",
                "index": 1,
                "count": 0,
                "img": "https://soptseminar5test.s3.ap-northeast-2.amazonaws.com/1-0.png",
                "created_date": "2021-07-13T17:00:15.411Z"
            },
            {
                "_id": "60ed480fbdb0953390d1ae62",
                "name": "인간관계",
                "index": 2,
                "count": 0,
                "img": "https://soptseminar5test.s3.ap-northeast-2.amazonaws.com/2-0.png",
                "created_date": "2021-07-13T17:00:15.619Z"
            },
            {
                "_id": "60ed480fbdb0953390d1ae64",
                "name": "건강",
                "index": 3,
                "count": 0,
                "img": "https://soptseminar5test.s3.ap-northeast-2.amazonaws.com/3-0.png",
                "created_date": "2021-07-13T17:00:15.813Z"
            },
            {
                "_id": "60ed4810bdb0953390d1ae66",
                "name": "금전",
                "index": 4,
                "count": 0,
                "img": "https://soptseminar5test.s3.ap-northeast-2.amazonaws.com/4-0.png",
                "created_date": "2021-07-13T17:00:16.013Z"
            },
            {
                "_id": "60ed4810bdb0953390d1ae68",
                "name": "개인",
                "index": 5,
                "count": 0,
                "img": "https://soptseminar5test.s3.ap-northeast-2.amazonaws.com/5-0.png",
                "created_date": "2021-07-13T17:00:16.210Z"
            },
            {
                "_id": "60ed4b22cd60e241cc4ddcf4",
                "name": "인간12",
                "index": 6,
                "count": 0,
                "img": "https://soptseminar5test.s3.ap-northeast-2.amazonaws.com/6-0.png",
                "created_date": "2021-07-13T17:13:22.186Z"
            }
        ]
    }
}

Fail #1 내부 서버 오류 /status : 500

{
    "success": false,
    "message": "서버 오류"
}

Fail #2 카테고리 8개 초과 /status : 405

{
    "success": false,
    "message": "카테고리 8개 초과"
}