연장결제 - Willson-2019/Willson-Server GitHub Wiki
URL
[POST] ~/api/v1/asker/payment/extend/:match_idx
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
header | Content-Type | application/json |
body | ticket_idx | 상담권 인덱스 : Int |
body | doc_id | accepted 도큐먼트 아이디 : String |
연장 결제 시 time 값 연장됨
요청예시
- 상담권 종류 인덱스 선택
{
"ticket_idx": 2,
"doc_id": "4qI7zfRZHOPTCY4I8uq1"
}
응답예시
- 성공 : 실시간
{
"code": "success",
"message": "success",
"data": {
"nickname": "일월성신과 중앙행정",
"time": "100",
"created_at": 1605076503000,
"updated_at": 1604037273000,
"idx": 1409,
"content": "ㅎㅎㅎㅎㅎ",
"wil_gender": "ALL",
"type": "realtime",
"status": "matched",
"match_cnt": 6,
"asker_idx": 26,
"subcategory_idx": 1,
"direction_idx": 3
}
}
꿀단지가 부족한 경우
{
"code": "amount_not_enough",
"message": "Amount not enough."
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}