-
Notifications
You must be signed in to change notification settings - Fork 4
전시관람
dayoung edited this page Jan 7, 2019
·
15 revisions
| 메소드 | 경로 | 설명 |
|---|---|---|
| Get | /discontents/displays/{display_idx} | 전시관람 |
Authorization : token
token: 로그인 시 받는 문자열 ex) eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJEb0lUU09QVCIsInVzZXJfaWR4Ijo3LCJleHAiOjE1NDkyODI2MjB9.ZkF-UKRV_OLRcbOo0odXx4OUG-n2PH-qAoKqS3oSP7k
{
"status": 200,
"message": "전시 입장 성공",
"data": [
{
"d_idx": 2,
"d_title": "맨발로 기억을 거닐다전展",
"a_idx": 6,
"a_name": "태초적인",
"a_width": 162,
"a_height": 112,
"a_depth": 1,
"a_form": "페인팅",
"a_year": "2017",
"pic_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"u_idx": 7,
"u_name": "김자현"
}
]
}| 변수 | 타입 | 설명 |
|---|---|---|
| d_idx | int | 전시 idx |
| d_title | String | 전시 제목 |
| a_idx | int | 작품 idx |
| a_name | String | 작품 이름 |
| a_width | int | 작품 가로 사이즈 |
| a_height | int | 작품 세로 사이즈 |
| a_depth | int | 작품 높이 사이즈 |
| a_form | String | 작품 형태 |
| a_year | String | 작품 제작년도 |
| pic_url | String | 작품 사진 |
| u_idx | int | 유저 idx |
| u_name | String | 유저 이름 |
전시회 내에 작품이 존재하지 않을 경우
{
"status": 204,
"message": "전시 작품이 존재하지 않습니다.",
"data": []
}전시회가 존재하지 않을 경우
{
"status": 403,
"message": "전시회가 존재하지 않습니다. display_idx를 확인하세요.",
"data": []
}{
"status": 500,
"message": "서버 내부 에러",
"data": null
}