-
Notifications
You must be signed in to change notification settings - Fork 1
✔팔로우신청
최정균 edited this page Jul 16, 2020
·
6 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | /profile/requestFollow | 팔로우 신청 |

{
"Content-Type": "application/json"
}
{
"myprofileIdx": 1,
"followingIdx" : 2
}
- myprofileIdx : 현재 이용중인 계정 프로필 인덱스
- followingIdx : 팔로우 할 사람의 프로필 인덱스
{
"status": 200,
"success": true,
"message": "팔로우 신청 성공"
}
- 데이터 반환 에러
{
"status": 400,
"success": false,
"message": "팔로우 신청 실패"
}