질문자 채팅목록 - Willson-2019/Willson-Server GitHub Wiki

URL

[GET] ~/api/v1/asker/chat/chatrooms

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

응답예시

성공

{
    "code": "success",
    "message": "success",
    "data": {
        "count": 2,
        "ing": [
            {
                "idx": 20455,
                "roomkey": "SrIE0U2lHWcbtJvBFl3cXClRsY02_1205312339_1605077440300",
                "concern": {
                    "nickname": "잔나",
                    "time": "50",
                    "idx": 1513,
                    "asker": {
                        "pic": "https://willson-v1.s3.ap-northeast-2.amazonaws.com/user_image/img_profile_w.png",
                        "id": "SrIE0U2lHWcbtJvBFl3cXClRsY02"
                    }
                },
                "willsoner": {
                    "idx": 12,
                    "introduction": "안녕하슈",
                    "experience": "저는 집이 잘 살다 한 순가에 무너져 압류즐이 붙고 고물을 줍고 다녔습니다",
                    "asker": {
                        "gender": "여",
                        "pic": "https://willson-v1.s3.ap-northeast-2.amazonaws.com/user_image/img_profile_w.png",
                        "nickname": "지수카카오"
                    },
                    "image": {
                        "pic": "https://willson-v1.s3.ap-northeast-2.amazonaws.com/willsoner_image/willson_04.jpg"
                    },
                    "subcategories": [
                        {
                            "name": "이별",
                            "category": {
                                "name": "연애"
                            }
                        }
                    ],
                    "keywords": [
                        {
                            "name": "줍줍"
                        },
                        {
                            "name": "무너짐"
                        },
                        {
                            "name": "집"
                        }
                    ]
                },
                "start": 1605077440300
            }
        ],
        "reserve": [
            {
                "idx": 669,
                "roomkey": "WbSC96eYyuXfdPvAmkj8cjVOf002_nKYHjlI9yneHWlhbyAObhPvXDw43",
                "concern": {
                    "time": "60"
                },
                "willsoner": {
                    "idx": 68,
                    "asker": {
                        "nickname": "하이하이",
                        "id": "xMKS6tTX55OmOevsm2mD4lfNztw1"
                    },
                    "image": {
                        "pic": "https://willson-v1.s3.ap-northeast-2.amazonaws.com/willsoner_image/willson_02.jpg"
                    }
                },
                "date": {
                    "from_time": "22:00",
                    "date_format": "03월 19일"
                }
            },
            {
                "idx": 670,
                "roomkey": "WbSC96eYyuXfdPvAmkj8cjVOf002_nKYHjlI9yneHWlhbyAObhPvXDw43",
                "concern": {
                    "time": "120"
                },
                "willsoner": {
                    "idx": 68,
                    "asker": {
                        "nickname": "하이하이"
                    },
                    "image": {
                        "pic": "https://willson-v1.s3.ap-northeast-2.amazonaws.com/willsoner_image/willson_02.jpg"
                    }
                },
                "date": {
                    "from_time": "18:00",
                    "date_format": "03월 20일"
                }
            },
            {
                "idx": 671,
                "roomkey": "WbSC96eYyuXfdPvAmkj8cjVOf002_43F9C9XlK9Wyln44lACF7G0JJYV2",
                "concern": {
                    "time": "120"
                },
                "willsoner": {
                    "idx": 2,
                    "asker": {
                        "nickname": "test6"
                    },
                    "image": {
                        "pic": "https://willson-v1.s3.ap-northeast-2.amazonaws.com/willsoner_image/willson_02.jpg"
                    }
                },
                "date": {
                    "from_time": "20:00",
                    "date_format": "03월 19일"
                }
            }
        ]
    }
}

access token이 만료된 경우

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

결과를 찾지 못한 경우

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