알림수정 - Willson-2019/Willson-Server GitHub Wiki

URL

[PATCH] ~/api/v1/asker/mypage/push

REQUEST PARAMETER NAME DESCRIPTION
header x-token 엑세스 토큰 access token
header Content-Type application/json
body agree_push_app 앱 푸시 알림 : Int(1) 0-해제, 1-승인
body agree_push_kakao 카카오톡 알림 : Int(1) 0-해제, 1-승인
body agree_push_email 이메일 알림 : Int(1) 0-해제, 1-승인
body agree_notice 윌슨 소식 : Int(1) 0-해제, 1-승인
body agree_distrub 방해 금지 시간 : Int(1) 0-해제, 1-승인 ** 디테일 미정
body agree_review 리뷰 알림 : Int(1) 0-해제, 1-승인

요청예시

body

{
	"agree_push_kakao" : 0
}

응답예시

성공

{
    "code": "success",
    "message": "success",
    "data": {
        "created_at": 1000,
        "updated_at": 1000,
        "idx": 2,
        "agree_push_app": 1,
        "agree_push_kakao": 0,
        "agree_push_email": 1,
        "agree_notice": 1,
        "agree_distrub": 1,
        "agree_review": 1,
        "asker_idx": 1
    }
}

access token이 만료된 경우

{
    "code": "access_token_expired",
    "message": "Access token expired"
}

결과를 찾지 못한 경우

{
    "code": "not_found",
    "message": "Result not found"
}