-
Notifications
You must be signed in to change notification settings - Fork 0
배너 사진 등록
epitone edited this page Dec 11, 2020
·
1 revision
메소드 | 경로 | 짧은 설명 |
---|---|---|
POST | /banner/upload | 배너 사진 등록 |
body : form-data
변수 | 타입 | 설명 |
---|---|---|
image | File | 배너 사진 등록 |
{
"image": 등록할 배너 사진
}
Success: 배너 사진 등록 성공
{
"status": 200,
"success": true,
"data": {
"id": 4,
"bannerImageUrl": "https://sopt-27-epitone.s3.ap-northeast-2.amazonaws.com/images/origin/1607663352291.png"
}
}
fail: 입력값 미등록시
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}