윌스너 실시간 상담걸기 - Willson-2019/Willson-Server GitHub Wiki

URL

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

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

  • 매칭 상태 : init -> waiting
  • 매칭 상태가 init일때만 상담 걸기 가능

응답예시

성공

{
    "code": "success",
    "message": "success",
    "data": {
        "created_at": 1584003570000,
        "updated_at": 1584003570000,
        "idx": 634,
        "status": "waiting",
        "roomkey": null,
        "concern_idx": 236,
        "willsoner_idx": 1,
        "date_idx": null
    }
}

access token이 만료된 경우

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

결과를 찾지 못한 경우 (이미 상담걸기를 보낸 경우 포함)

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