-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 마이페이지 기록키워드
Kayoung Yoon edited this page Jan 14, 2021
·
5 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | /keywords/taskKeyword | 로그인 돼있는 사용자가 현재 선택한 키워드 아이디와 이름을 우선 순위 순으로 가져옵니다. |
Content-Type: application/json
key | 설명 | 타입 | 비고 |
---|---|---|---|
jwt | 사용자 인증 토큰 | String | not Null |
{
"status": 200,
"success": true,
"message": "마이페이지 기록키워드 조회 성공",
"data": {
"keywords": [
{
"totalKeywordId": 132,
"name": "아웃풋"
},
{
"totalKeywordId": 135,
"name": "열정"
},
{
"totalKeywordId": 134,
"name": "선한영향력"
},
{
"totalKeywordId": 133,
"name": "경청"
}
]
}
}
- 입력값에 NULL VALUE
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
- 서버 내부 에러
{
"status": 500,
"success": false,
"message": "서버 내부 에러"
}