-
Notifications
You must be signed in to change notification settings - Fork 4
미술작품 수정
jbw1003 edited this page Jan 9, 2019
·
7 revisions
| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| PUT | /artworks/{a_idx} | 미술작품 수정 |
Content-Type: multipart/form-data Authorization: token
| 변수 | 타입 | 설명 |
|---|---|---|
| a_idx | int | 작품 고유 인덱스 |
| a_name | String | 작품 이름 |
| a_width | int | 작품 가로 |
| a_height | int | 작품 세로 |
| a_depth | int | 작품 높이 |
| a_category | String | 작품 카테고리(zeplin에 보이는 그대로 적어주세요) |
| a_form | String | 작품 형태(zeplin에 보이는 그대로 적어주세요) |
| a_price | int | 작품 가격 |
| u_idx | int | 유저 고유 인덱스 |
| a_detail | String | 작품 설명 |
| a_date | Date | 작품 작성날 (이건 안 써줘도 됨) |
| a_year | String | 작품 제작년도 |
| pic_url | MultipartFile | 작품 사진 |
| a_tags | String | 작품 테그 |
| a_license | String | 작품 라이센스 |
{
"status": 200,
"message": "컨텐츠 수정 성공",
"data": {
"a_idx": 9,
"a_name": "내안의 무엇",
"a_width": 80,
"a_height": 100,
"a_depth": 1,
"a_category": "동물",
"a_form": "혼합 매체",
"a_price": 200000,
"a_like_count": 7,
"u_idx": 3,
"a_detail": "서리풀 공모전 수상작으로 자유를 원하지만 어딘가에 갇혀 있는",
"a_date": "2018年11月23日T00:00:00.000+0000",
"a_year": "2018",
"pic_url": {
"a_idx": 9,
"pic_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png"
},
"auth": false,
"islike": false,
"a_tags": "3,7,9",
"a_license": "0",
"a_size": 8000,
"a_isDisplay": false
}
}{
"status": 401,
"message": "인증 실패",
"data": null
}{
"status": 500,
"message": "서버 내부 에러",
"data": null
}