Get Room Info

user 데이터 가져올 시 BLOCK 유저는 제외, 실시간 들어와있는 유저 판별 - 소켓에서(Advanced

allowRange int // KM createdAt datetime updatedAt datetime

POST http://rightnow.p-e.kr/room/get

Request Body

Name
Type
Description

room_id

String

{
    "data":{
        "id":"...",
        "explain":"...",
        "allow_num":10,
        "room_img":"...",
        "category":{
            "id":1,
            "name":"..."
        },
        "notify":"...",
        "lon":12.111,
        "lat":21.111,
        "isClose":"Y",
        "isPrivate":"Y",
        "allow_range":10,
        "createdAt":"2021-01-01 10:01:01",
        "updatedAt":"2021-01-01 10:01:01",
        "users":[
            {
                "email":"...",
                "nick_name":"...",
                "profile_img":"...",
                "enterDate":"2021-01-01 10:01:01",
                "role":"SUB"
            }
        ],
        "my_role":"HOST",
        "messages":[
            {
                "id":1,
                "user":{
                    "email":"...",
                    "nick_name":"...",
                    "profile_img":"...",
                },
                "content":"...",
                "isUpdate":"N",
                "writeDate":"2021-01-01 10:01:01"
            }
        ]
    },
    "message":"ok"
}

Last updated