윌스너 예약 상담걸기 - Willson-2019/Willson-Server GitHub Wiki

URL

[PATCH] ~/api/v1/willsoner/list/reserve/matches/:match_idx/select

REQUEST PARAMETER NAME DESCRIPTION
header x-token 엑세스 토큰 access token
Content-Type application/json 엑세스 토큰 access token
body date 캘린더 날짜 : Date ("YYYY-MM-DD")
body from_time 시작시간 : String ("HH:mm")
* 디테일 예외는 출시 후 처리할 예정

요청예시

body

{
	"date": "2020-03-14",
	"from_time": "15:00"
}

응답예시

성공

{
    "code": "success",
    "message": "success",
    "data": {
        "created_at": 1583916857000,
        "updated_at": 1583916857000,
        "idx": 603,
        "status": "waiting",
        "roomkey": null,
        "concern_idx": 230,
        "willsoner_idx": 56,
        "date_idx": 17,
        "concern": {
            "time": "60"
        }
    }
}

access token이 만료된 경우

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

결과를 찾지 못한 경우

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