-
Notifications
You must be signed in to change notification settings - Fork 1
✔팔로잉 목록
최정균 edited this page Jul 15, 2020
·
18 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /profile/followingList/:profileIdx | 팔로잉 |
{
"Content-Type": "application/json"
}
52.79.90.119:3000/profile/followingList/1?pageStart=1&pageEnd=10
- pageStart : 목록 시작번호
- pageEnd : 목록 끝번호
{
"status": 200,
"success": true,
"message": "팔로우 목록 조회 성공",
"data": [
{
"profileIdx": 1,
"profileImg": "https://outsopt26.s3.ap-northeast-2.amazonaws.com/1594497994285.jpg",
"profileName": "winter",
"profileGender": "female",
"profileNeutral": "false",
"profileAge": 10,
"profileWeight": "3"
},
{
"profileIdx": 2,
"profileImg": "https://outsopt26.s3.ap-northeast-3.amazonaws.com/1594497994285.jpg",
"profileName": "spring",
"profileGender": "female",
"profileNeutral": "true",
"profileAge": 2,
"profileWeight": "3"
}
]
}
- 데이터 반환 에러
{
"status": 400,
"success": false,
"message": "팔로잉 목록 조회 실패"
}