Skip to content

✔팔로우 취소

최정균 edited this page Jul 13, 2020 · 8 revisions
메소드 경로 설명
DELETE /profile/deleteFollow 팔로우 취소

팔로우 취소

Request Header

{
    "Content-Type": "application/json" 
}

Request Body

{
	"myprofileIdx" : 1,
	"followingIdx" : 1
}
  • myprofileIdx : 나의 프로필 인덱스
  • followingIdx : 팔로우하는 사람의 인덱스

Response

< Success >

{
    "status": 200,
    "success": true,
    "message": "팔로우 취소 성공",
    "data": {
        "unfollowingIdx": 2
    }
}