Skip to content

팔로우 취소

jiss02 edited this page Jan 1, 2020 · 2 revisions

팔로우 취소

Request

URL

메소드 경로 설명
DELETE /profile/following 팔로우 취소

Header

Content-Type: application/json
token: JWT

Body

변수 타입 설명
othersIdx INT 팔로우를 취소할 유저의 Idx
{
	"othersIdx": 2
}

Response

Body

SUCCESS

{
    "success": true,
    "message": "팔로잉 삭제 성공",
    "data": {
        "fieldCount": 0,
        "affectedRows": 1,
        "insertId": 0,
        "serverStatus": 2,
        "warningCount": 0,
        "message": "",
        "protocol41": true,
        "changedRows": 0
    }
}

FAIL

{
	"status": 361
    "success": false,
    "message": "존재하지 않는 팔로우 입니다"
}