-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 마이페이지 키워드목록
Kayoung Yoon edited this page Jan 14, 2021
·
3 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | /keywords/keywordList | 유저가 선택했던 모든 키워드목록을 불러옵니다. |
Content-Type: application/json
key | 설명 | 타입 | 비고 |
---|---|---|---|
jwt | 사용자 인증 토큰 | String | not Null |
{
"status": 200,
"success": true,
"message": "마이페이지 키워드 리스트 조회 성공",
"data": [
{
"totalKeywordId": 1,
"isSelected": true,
"name": "아웃풋"
},
{
"totalKeywordId": 2,
"isSelected": true,
"name": "선한영향력"
},
{
"totalKeywordId": 3,
"isSelected": true,
"name": "열정"
},
{
"totalKeywordId": 4,
"isSelected": true,
"name": "경청"
},
{
"totalKeywordId": 5,
"isSelected": false,
"name": "진정성"
}
]
}
- 입력값에 NULL VALUE
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
- 서버 내부 에러
{
"status": 500,
"success": false,
"message": "서버 내부 에러"
}