유저 목록 조회

GET /v2/user

유저 목록을 조회합니다.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Response

{
    "success": true,
    "data": {
        "userList": [
            {
                "id": "<userId>",
                "name": "유저 이름",
                "status": "<유저 상태>",
                "email": "usermail@address.com",
                "role": "<역할 이름>",
                "updatedAt": "2024-04-03T05:59:23.217Z",
                "createdAt": "2024-04-03T05:59:23.217Z"
            },
        ]
    }
}

Last updated