로그아웃 - Willson-2019/Willson-Server GitHub Wiki

URL

[GET] ~/api/v1/asker/sign/signout

REQUEST PARAMETER NAME DESCRIPTION
header x-token 엑세스 토큰 access token

응답예시

성공

{
    "code": "success",
    "message": "success",
    "data": {
        "gender": "남",
        "age": "20대 후반",
        "login_at": 1591582419000,
        "created_at": 1586666857000,
        "updated_at": 1586666857000,
        "idx": 27,
        "id": "awCTdQ9mhjYocKzPt45PhWufjps2",
        "social": "email",
        "email": "[email protected]",
        "nickname": "willsonertest",
        "status": "inactive"
    }
}

토큰 에러 (access 토큰 혹은 push 토큰이 존재하지 않는 경우)

{
    "code": "token_not_found",
    "message": "Token not found"
}