-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 미션뷰
realwhyjay edited this page Nov 20, 2021
·
3 revisions
| 메소드 | 경로 | 뷰 | 설명 |
|---|---|---|---|
| GET | /mission/:id | mission | 미션 뷰 데이터 전달 |

{
"status": 200,
"success": true,
"data": {
"content": "빨강 양말 신기"
}
}- 서버 에러
파라미터 값이 없을 때
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다"
}해당 id의 user가 존재하지 않을 때
{
"status": 400,
"success": false,
"message": "존재하지 않는 회원입니다."
}{
"status": 500,
"success": false,
"message": "서버 내부 에러"
}