-
Notifications
You must be signed in to change notification settings - Fork 0
✔ 제품 등록
Junhyeon edited this page Jan 23, 2021
·
2 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | /product | 제품 등록 |
{
"Content-Type": "multipart/form-data; boundary=<calculated when request is sent>"
}
key | value | type |
---|---|---|
manufacturer | 브랜드 이름 | String |
productName | 제품 이름 | String |
productImg | 제품 이미지 | 되도록 png |
type | 타입 내용 | String |
barcode | 바코드 내용 | String |
{
"responseMessage": "제품 등록 성공",
"data": 1
}
- 필요한 데이터가 없을시(400)
{
"responseMessage": "서버 내부 에러",
"data": null
}
- 데이터 누락 (400)
{
"timestamp": "2020-12-29T02:04:54.539+00:00",
"status": 400,
"error": "Bad Request",
"message": "",
"path": "/review"
}
- 서버 내부 에러 (requestBody 개수 안 맞을 때) (500)
{
"responseMessage": "서버 내부 에러",
"data": null
}
- 메소드 에러 (405)
- 경로 에러 (404)
- 권한 에러 (수정 삭제는 미리 막고 대부분 토큰 만료)(401)