-
Notifications
You must be signed in to change notification settings - Fork 4
전시 신청서 조회
dayoung edited this page Jan 7, 2019
·
21 revisions
메소드 | 경로 | 설명 |
---|---|---|
Get | /discontents/application/{user_idx} | 전시 신청서 조회 |
Authorization : token
token: 로그인 시 받는 문자열 ex) eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJEb0lUU09QVCIsInVzZXJfaWR4Ijo3LCJleHAiOjE1NDkyODI2MjB9.ZkF-UKRV_OLRcbOo0odXx4OUG-n2PH-qAoKqS3oSP7k
displays [ {d_idx, d_sDateNow, d_eDateNow, d_title, d_subTitle, d_shortDetail}, ...]
artworks [{a_idx, pic_url}, ... ]
{
"status": 200,
"message": "전시 신청서 조회 성공",
"data": {
"displays": [ //신청중인전시리스트반환
{
"d_idx": 4, //INT
"d_sDateNow": "2019-03-01", //STRING
"d_eDateNow": "2019-04-30", //STRING
"d_sDateApply": "2019-01-01", //STRING
"d_eDateApply": "2019-02-01", //STRING
"d_repImg_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"d_titleImg_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"d_mainImg_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"d_title": "너와 나의 무엇 展", //STRING
"d_subTitle": "인간관계편", //STRING
"d_longDetail": "",
"d_shortDetail": "너는 너 자체가 아름다워", //STRING
"d_artworkUser": null
},
{
"d_idx": 5, //INT
"d_sDateNow": "2019-03-01", //STRING
"d_eDateNow": "2019-04-30", //STRING
"d_sDateApply": "2018-12-20", //STRING
"d_eDateApply": "2019-02-01", //STRING
"d_repImg_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"d_titleImg_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"d_mainImg_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"d_title": "빛과 어둠에 꽃이피다展", //STRING
"d_subTitle": "빛과 어둠편", //STRING
"d_longDetail": "",
"d_shortDetail": "밤이 낮을 꿈꾸는 듯이", //STRING
"d_artworkUser": null
},
{
"d_idx": 6,
"d_sDateNow": "2019-03-01",
"d_eDateNow": "2019-04-30",
"d_sDateApply": "2018-12-20",
"d_eDateApply": "2019-02-01",
"d_repImg_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"d_titleImg_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"d_mainImg_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"d_title": "사랑으로 번지다 展",
"d_subTitle": "사랑편",
"d_longDetail": "",
"d_shortDetail": "누군가에게 사랑을 말하다",
"d_artworkUser": null
}
],
"artworks": [ //user의등록가능한작품리스트반환
{
"a_idx": 10, //**
"a_name": "피자",
"a_width": 64,
"a_height": 47,
"a_depth": 1,
"a_category": "사물",
"a_form": "혼합 매체",
"a_price": 70000,
"a_like_count": 1,
"u_idx": 9,
"a_detail": "맛있는 피자를 그리고 싶었다.",
"a_date": "2018-11-23T00:00:00.000+0000",
"a_year": "2016",
"pic_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png", //**
"auth": false,
"islike": false,
"a_tags": "1,3,7",
"a_license": "0",
"a_size": 3008,
"a_isDisplay": false,
"a_active": true
},
{
"a_idx": 11, //**
"a_name": "심해",
"a_width": 91,
"a_height": 116,
"a_depth": 1,
"a_category": "추상",
"a_form": "페인팅",
"a_price": 100000,
"a_like_count": 0,
"u_idx": 9,
"a_detail": "바다속을 분위기 좋은 푸른 색깔로 해초를 ",
"a_date": "2018-11-23T00:00:00.000+0000",
"a_year": "2017",
"pic_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png", //**
"auth": false,
"islike": false,
"a_tags": "1,3,4,8",
"a_license": "0",
"a_size": 10556,
"a_isDisplay": false,
"a_active": true
}
]
}
}
token 이 정확하지 않은 경우
{
"status": 401,
"message": "인증 실패",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}