윌스너 해시태그 - Willson-2019/Willson-Server GitHub Wiki

URL

[POST] ~/api/v1/willsoner/register/keyword

REQUEST PARAMETER NAME DESCRIPTION
header x-token 엑세스 토큰 access token
header Content-Type application/json
body category_idx 카테고리 인덱스 : Int
body keyword_data 키워드 리스트 : String[]

  • 키워드 선택 추가될 예정

요청예시

body

{
	"category_idx": 1,
	"keyword_data": [
		"안녕",
		"하이"
	]
}

응답예시

성공

{
    "code": "success",
    "message": "success",
    "data": [
        {
            "created_at": 1585888668516,
            "updated_at": 1585888668516,
            "idx": 127,
            "name": "안녕",
            "approved": 0,
            "category_idx": 1
        },
        {
            "created_at": 1585888668516,
            "updated_at": 1585888668516,
            "idx": 128,
            "name": "하이",
            "approved": 0,
            "category_idx": 1
        }
    ]
}

access token이 만료된 경우

{
    "code": "access_token_expired",
    "message": "Access token expired"
}

결과를 찾지 못한 경우

{
    "code": "not_found",
    "message": "Result not found"
}