-
Notifications
You must be signed in to change notification settings - Fork 1
[GET] 칭찬 대상별 칭찬 내역
최다인 edited this page Mar 4, 2021
·
8 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /praise?praisedName=Name | 칭찬 대상별 칭찬 내역 조회하기 |
Name
은 칭찬 대상 이름으로 setting
{
"Content-Type": "application/json",
"token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWR4IjoyMCwiaWF0IjoxNjA4MTk4MTEzLCJleHAiOjE2MTA3OTAxMTMsImlzcyI6InByYWlzZSJ9.fzeBLLwK_TyzUskovaBujiFF_I4cEm5OlmzWFv_da_4"
}
{
"status": 200,
"message": "해당 대상 칭찬 카드 조회 성공입니다",
"data": {
"praiseCount": 38,
"collectionPraise": [
{
"praisedName": "규니1",
"created_at": "2020-12-21T00:00:00.000Z",
"today_praise": "너가 내 친구라서 참 좋아"
},
{
"praisedName": "규니2",
"created_at": "2020-12-21T00:00:00.000Z",
"today_praise": "너가 내 친구라서 참 좋아"
}
]
}
}
- 유효하지 않은 토큰
{
"status": 401,
"message": "유효하지 않은 토큰값입니다"
}
- 토큰이 없을 때
{
"status": 400,
"message": "토큰 값이 없습니다"
}
- 토큰이 만료되었을 때
{
"status": 400,
"message": "토큰 값이 만료되었습니다"
}
- 서버 에러
{
"status": 500,
"message": "서버 내부 에러입니다"
}