윌스너 상담연장 수락 - Willson-2019/Willson-Server GitHub Wiki

URL

[POST] ~/api/v1/willsoner/chat/extend/accept/:match_idx

REQUEST PARAMETER NAME DESCRIPTION
header x-token 엑세스 토큰 access token
header Content-Type application/json
body doc_id init 도큐먼트 아이디 : String

요청예시

{
    "doc_id": "4qI7zfRZHOPTCY4I8uq1"
}

응답예시

성공

{
    "code": "success",
    "message": "success",
    "data": {
        "created_at": 1590561973000,
        "updated_at": 1590561973000,
        "idx": 5,
        "type": "30",
        "status": "accepted",
        "match_idx": 4109
    }
}

access token이 만료된 경우

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

결과를 찾지 못한 경우 : 요청된 상담연장이 없는 경우

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