# Get Room Info

## allowRange int // KM createdAt datetime updatedAt datetime

<mark style="color:green;">`POST`</mark> `http://rightnow.p-e.kr/room/get`

#### Request Body

| Name     | Type   | Description |
| -------- | ------ | ----------- |
| room\_id | String |             |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "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"
}
```

{% endtab %}

{% tab title="500: Internal Server Error 서버 다운" %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}
