# Get friendRequestList(received)

## 받은 친구 목록 보기

<mark style="color:green;">`POST`</mark> `http://rightnow.p-e.kr/friend/request/list/:email`

{% tabs %}
{% tab title="200: OK 요청 성공" %}

```javascript
{
    "data": {
        "RequestFriendList": [
            {
                "email": "user4@naver.com",
                "nick_name": "코코",
                "profile_image": null,
                "role": "USER",
                "social_login": "original",
                "auth_code": "",
                "is_block": null,
                "block_date": null,
                "createdAt": "2022-01-11 18:15:32",
                "updatedAt": "2022-01-11 18:15:32"
            },
            {
                "email": "user6@naver.com",
                "nick_name": "코코",
                "profile_image": null,
                "role": "USER",
                "social_login": "original",
                "auth_code": "",
                "is_block": null,
                "block_date": null,
                "createdAt": "2022-01-11 18:19:30",
                "updatedAt": "2022-01-11 18:19:30"
            },
        ]
    },
    "message": "ok"
}
```

{% endtab %}

{% tab title="404: Not Found 유저정보가 없음" %}

```javascript
{
    'message':'no exists userInfo'
}
```

{% endtab %}

{% tab title="500: Internal Server Error 서버 에러" %}

```javascript
{
    'message':'err'
}
```

{% endtab %}
{% endtabs %}
