-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 카드 추가하기
Say-young edited this page Jul 9, 2020
·
11 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | .../... | 카드를 추가한다. |
{
"Content-Type": "application/json"
}
{
"user_idx": 0,
"project_idx": 1,
"round_idx": 0,
"card_img": "5Sbcxbm~~클라가 보내주는 이미지 어떻게 처리하는지 일단 보류"
}
- user_idx: 유저 인덱스
- project_idx: 프로젝트 인덱스
- card_img: 클라에서 보내준 이미지 디비에 저장.
- round_idx: 0
{
"status": 200,
"success": true,
"message": "카드 추가 성공",
}
- 통신 실패
{
"status": 400,
"success": false,
"message": "카드 추가 실패"
}