-
Notifications
You must be signed in to change notification settings - Fork 4
회원 개인 작품 조회
syndersonLEE edited this page Jan 7, 2019
·
11 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | /users/{u_Idx} | 회원 소유 작품 조회 |
{
"status": 200,
"message": "모든 컨텐츠 조회 성공",
"u_name": "이상윤",
"u_description": "원정빈과 13인의 우쭈쭈!!",
"data": [
{
"a_idx": 8,
"a_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/a5f3fcaa285a46ad9fbcc572baacf9f2.png",
"a_isDisplay": false
},
{
"a_idx": 31,
"a_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/d84aa8587c3f419c841519290b5fe404.png",
"a_isDisplay": false
}
],
"dataNum": 2
}
변수 | 타입 | 설명 |
---|---|---|
u_description | String | 작가 소개 설명 |
a_idx | int | 작품 인덱스 |
a_url | String | 작품 그림 url |
a_isDisplay | boolean | 현재 전시 상태 유무 |
dataNum | int | 작품 개수 |
{
"status": 404,
"message": "회원을 찾을 수 없습니다.",
"data": null
}
{
"status": 204,
"message": "컨텐츠가 존재하지 않습니다.",
"u_name": "김다영",
"u_description": "우주 최고 미남 다영 언니",
"data": [],
"dataNum": 0
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}