v2 고민신청 완료 - Willson-2019/Willson-Server GitHub Wiki

URL

[POST] ~/api/v2/asker/request/complete

REQUEST PARAMETER NAME DESCRIPTION
header x-token 엑세스 토큰 access token
header Content-Type application/json
body subcategory_idx 세부카테고리 인덱스 : Int
body image_idx 이미지 인덱스 : Int
body feeling_idx 감정 인덱스 : Int[]
body faq_idx 자주 질문하는 고민 인덱스 : Int[]
body wil_gender 희망 윌스너 성별 : Enum('All', 'F', 'M')
body keyword_idx 키워드 인덱스 : Int[]
body direction_idx 대화방향 인덱스 : Int
body type 신청방식 : Enum('realtime', 'reserve')

personality_idx 삭제
image_idx, keyword_idx 추가


요청예시

  • 실시간
{
	"subcategory_idx" : 1,
	"feeling_idx" : [
		3,
		4
	],
	"faq_idx" : [
		1,
		5
	],
	"content" : "v2",
	"wil_gender" : "ALL",
    "image_idx": 8,
	"keyword_idx" : [
	2,
	3
	],
	"direction_idx" : 2,
    "type": "realtime"
}

응답예시

성공

  • 실시간
{
    "code": "success",
    "message": "success",
    "data": {
        "nickname": "담백한 어니",
        "time": "50",
        "created_at": 1609588408016,
        "updated_at": 1609588408016,
        "match_cnt": 0,
        "idx": 1765,
        "asker_idx": 149,
        "subcategory_idx": 1,
        "content": "v2",
        "wil_gender": "ALL",
        "direction_idx": 2,
        "type": "realtime",
        "status": "unpaid",
        "image_idx": 8
    }
}

access token이 만료된 경우

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

결과를 찾지 못한 경우

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